From b1b9c13d2c79b5ceec91499284cf03f5188e8576 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 3 Dec 2023 00:01:03 +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..0fff7688 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.5 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