summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2019-12-22 17:18:38 -0500
committerDave Henderson <dhenderson@gmail.com>2019-12-22 17:18:38 -0500
commit582b9564e21c9d43aa7b70ce6d4ff9c5b871d45f (patch)
tree201fc88b07f2385df30fda1327321fa4273b0ffd /Dockerfile
parent3e5f8f17e382e32dd886973dafae296a2166bdec (diff)
Need Alpine 3.8 for a working upx
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index e498e7b3..8df9788f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
-FROM alpine:3.11 AS upx
+FROM alpine:3.8 AS upx
RUN apk add --no-cache upx=3.94-r0
-FROM golang:1.13.5-alpine AS build
+FROM golang:1.13.5-alpine3.10 AS build
RUN apk add --no-cache \
make \
@@ -37,7 +37,7 @@ COPY --from=artifacts /bin/gomplate_${OS}-${ARCH} /gomplate
ENTRYPOINT [ "/gomplate" ]
-FROM alpine:3.11 AS gomplate-alpine
+FROM alpine:3.11.0 AS gomplate-alpine
ARG VCS_REF
ARG OS=linux