From 1899e7a07b06fa652f3ad8c3c501b8a2f03b2ada Mon Sep 17 00:00:00 2001 From: Yee Hing Tong Date: Wed, 3 Nov 2021 11:17:05 -0700 Subject: [PATCH] Match to admin alpine version (#24) Signed-off-by: Yee Hing Tong --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a82ac7b..700df47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # # TO OPT OUT OF UPDATES, SEE https://github.com/lyft/boilerplate/blob/master/Readme.rst -FROM golang:1.13.3-alpine3.10 as builder +FROM golang:1.17.1-alpine3.14 as builder RUN apk add git openssh-client make curl # COPY only the go mod files for efficient caching @@ -24,7 +24,7 @@ RUN make linux_compile ENV PATH="/artifacts:${PATH}" # This will eventually move to centurylink/ca-certs:latest for minimum possible image size -FROM alpine:3.10 +FROM alpine:3.14 LABEL org.opencontainers.image.source https://github.com/lyft/flyteplugins COPY --from=builder /artifacts /bin