From ba40772283538afbba0f665ceff20191a06d47a3 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 25 Jul 2024 09:49:40 +0000 Subject: [PATCH] fix: docker/Dockerfile-helloworld to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-7411314 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-7411315 - https://snyk.io/vuln/SNYK-DEBIAN12-GIT-6846203 - https://snyk.io/vuln/SNYK-DEBIAN12-GIT-6846203 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 --- docker/Dockerfile-helloworld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-helloworld b/docker/Dockerfile-helloworld index cd335c4..29c1a1f 100644 --- a/docker/Dockerfile-helloworld +++ b/docker/Dockerfile-helloworld @@ -1,7 +1,7 @@ # source: https://github.com/peter-evans/knative-docs/blob/master/serving/samples/helloworld-go/Dockerfile # Start from a Debian image with the latest version of Go installed # and a workspace (GOPATH) configured at /go. -FROM golang +FROM golang:1.23rc2 # Copy the local package files to the container's workspace. ADD src src