From c037105096697e9dcd69382acd96d652e61db8b4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 10 Aug 2023 02:44:24 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE37-MUSL-458286 - https://snyk.io/vuln/SNYK-ALPINE37-MUSL-458286 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa68929..c61b6ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ COPY . . RUN CGO_ENABLED=0 GOOS=linux go build -o /go/bin/aws-sigv4-proxy -FROM alpine:3.7 +FROM alpine:3.16.7 COPY --from=build /etc/ssl/certs/ca-bundle.crt /etc/ssl/certs/ COPY --from=build /go/bin/aws-sigv4-proxy /go/bin/aws-sigv4-proxy COPY entrypoint.sh /entrypoint.sh