From 3e0d043462df66debf591753f24b77c2ed6ef887 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 21 Jul 2025 18:02:18 +0000 Subject: [PATCH] fix: docker/misc/14.MultiStage_Dockerfile.txt to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE39-MUSL-458529 - https://snyk.io/vuln/SNYK-ALPINE39-MUSL-458529 - https://snyk.io/vuln/SNYK-ALPINE39-OPENSSL-1089232 - https://snyk.io/vuln/SNYK-ALPINE39-OPENSSL-1089235 - https://snyk.io/vuln/SNYK-ALPINE39-OPENSSL-588029 --- docker/misc/14.MultiStage_Dockerfile.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/misc/14.MultiStage_Dockerfile.txt b/docker/misc/14.MultiStage_Dockerfile.txt index d71824b4..ab5ce6eb 100644 --- a/docker/misc/14.MultiStage_Dockerfile.txt +++ b/docker/misc/14.MultiStage_Dockerfile.txt @@ -46,7 +46,7 @@ WORKDIR /helloworld COPY helloworld.go . RUN GOOS=linux go build -a -installsuffix cgo -o helloworld . -FROM alpine:3.9.3 +FROM alpine:3.22.1 WORKDIR /root COPY --from=compiler /helloworld/helloworld . CMD ["./helloworld"]