From 6c93f9f9f22d4e132d3d75d69f2e7d9054c064cc Mon Sep 17 00:00:00 2001 From: Guillaume A Date: Sun, 20 Nov 2022 12:47:34 +0800 Subject: [PATCH] Update Dockerfile to Alpine 3.16 Alpine 3.12 is EOL and contains multiple vulnerabilites. Deploying on Alpine 3.16 works fine. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58e4b59aec..e5e349a820 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ RUN set -ex \ && echo "Compiling for $GOARCH" \ && go install -v . ./cmd/... -FROM $ARCH/alpine:3.12 +FROM $ARCH/alpine:3.16 COPY --from=build-container /go/bin /bin