From 689ce4c053c26d632eec41cb2a6f34e5a37ef4ee Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 29 Sep 2023 20:00:30 +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..43f351f0 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.18.4 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