diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2019-12-22 17:18:38 -0500 |
|---|---|---|
| committer | Dave Henderson <dhenderson@gmail.com> | 2019-12-22 17:18:38 -0500 |
| commit | 582b9564e21c9d43aa7b70ce6d4ff9c5b871d45f (patch) | |
| tree | 201fc88b07f2385df30fda1327321fa4273b0ffd /Dockerfile | |
| parent | 3e5f8f17e382e32dd886973dafae296a2166bdec (diff) | |
Need Alpine 3.8 for a working upx
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
