From 6f43f4053297b94c835010d65f8330cd0eae7f76 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 18 Mar 2022 05:04:16 +0000 Subject: [PATCH] fix: Dockerfile.alpine to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-2426331 - https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-2426331 --- Dockerfile.alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 988a4f9..5864177 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -o dist/app . # --- Run Stage -FROM alpine:latest +FROM alpine:3.15 RUN apk --no-cache add ca-certificates # copy binary from build stage