Bump base image version of Go environment to 1.11.4 (#1026)

This commit is contained in:
Ta-Ching Chen
2019-03-19 18:29:19 +08:00
committed by GitHub
parent c496d35d12
commit 3a8b9ccd80
5 changed files with 39 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
ARG BUILDER_IMAGE=fission/builder
ARG GO_VERSION=1.11.4
FROM ${BUILDER_IMAGE}
FROM golang:${GO_VERSION}
ENV GOPATH /usr
WORKDIR ${GOPATH}
COPY --from=0 /builder /builder
ADD build.sh /usr/local/bin/build