summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2017-04-14 18:02:00 -0700
committerSteve Manuel <nilslice@gmail.com>2017-04-14 18:02:00 -0700
commit217e96c8dd134b7f24c8b9320d82843ff02a0ae1 (patch)
treea47a9ecfc493cc370f022ec9b96363d211875609 /Dockerfile
parent1df78f4390b0153f48108ae1aa504719730d2b2f (diff)
update Dockerfile to golang:1.8.1
Diffstat (limited to 'Dockerfile')
-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 [ "" ]