summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 73446aa..17a496f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 [ "" ]