From f3b7b223bc30c930884368d781f0705ecebcd7a1 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 13 Jan 2024 02:44:46 +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 aa689290..685c8190 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 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