Skip to content

Commit

Permalink
setting correct tag in dockerfile, adding docker ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
michelangelo314 committed Feb 5, 2018
1 parent a978c2e commit 54029db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

build/
.git/
README.md
LICENSE
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
# run something like tail /var/log/turtlecoind/current to see the status
# be sure to run with volumes, ie:
# docker run -v $(pwd)/turtlecoind:/var/lib/turtlecoind -v $(pwd)/wallet:/home/turtlecoin --rm -ti turtlecoin:0.2.2
FROM ubuntu:16.04
ARG base_image_version=0.10.0
FROM phusion/baseimage:$base_image_version

ADD https://github.com/just-containers/s6-overlay/releases/download/v1.21.2.2/s6-overlay-amd64.tar.gz /tmp/
RUN tar xzf /tmp/s6-overlay-amd64.tar.gz -C /

ADD https://github.com/just-containers/socklog-overlay/releases/download/v2.1.0-0/socklog-overlay-amd64.tar.gz /tmp/
RUN tar xzf /tmp/socklog-overlay-amd64.tar.gz -C /

ARG TURTLECOIN_VERSION=v0.3.1
ARG TURTLECOIN_VERSION=v0.3.0
ENV TURTLECOIN_VERSION=${TURTLECOIN_VERSION}

# install build dependencies
# checkout the latest tag
Expand Down

0 comments on commit 54029db

Please sign in to comment.