diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-04-14 18:02:00 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-04-14 18:02:00 -0700 |
commit | 217e96c8dd134b7f24c8b9320d82843ff02a0ae1 (patch) | |
tree | a47a9ecfc493cc370f022ec9b96363d211875609 /Dockerfile | |
parent | 1df78f4390b0153f48108ae1aa504719730d2b2f (diff) |
update Dockerfile to golang:1.8.1
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ # Base our image on an official, minimal image of our preferred golang -FROM golang:latest +FROM golang:1.8.1 # Note: The default golang docker image, already has the GOPATH env variable set. # GOPATH is located at /go @@ -21,7 +21,7 @@ WORKDIR $PONZU_ROOT COPY . . # the following runs the code inside of the $GO_SRC/$PONZU_GITHUB directory -RUN go get $PONZU_GITHUB... +RUN go get -u $PONZU_GITHUB... # Define the scripts we want run once the container boots # CMD [ "" ] |