From 8aabf31805b4df5b04d7424311ca78a551fee07a Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 4 Jul 2024 08:45:46 +0000 Subject: [PATCH] fix: docker/Dockerfile-helloworld to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-PYTHON311-3325304 - https://snyk.io/vuln/SNYK-DEBIAN12-PYTHON311-3325304 - https://snyk.io/vuln/SNYK-DEBIAN12-PYTHON311-5853785 - https://snyk.io/vuln/SNYK-DEBIAN12-PYTHON311-5853785 - https://snyk.io/vuln/SNYK-DEBIAN12-SYSTEMD-6277507 --- docker/Dockerfile-helloworld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-helloworld b/docker/Dockerfile-helloworld index cd335c4..84c8539 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.22.5 # Copy the local package files to the container's workspace. ADD src src