From 0f3e6e86c181d855cba3fb067c19cf523acf9789 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 14 Apr 2023 00:59:38 +0000 Subject: [PATCH] fix: hack/develop/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN11-CURL-3065656 - https://snyk.io/vuln/SNYK-DEBIAN11-CURL-3320498 - https://snyk.io/vuln/SNYK-DEBIAN11-GIT-3232722 - https://snyk.io/vuln/SNYK-DEBIAN11-GIT-3232724 - https://snyk.io/vuln/SNYK-DEBIAN11-LIBTASN16-3061097 --- hack/develop/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/develop/Dockerfile b/hack/develop/Dockerfile index d89e52ff0781..e81fb90bc4d2 100644 --- a/hack/develop/Dockerfile +++ b/hack/develop/Dockerfile @@ -18,7 +18,7 @@ # golang is based on debian:jessie # Specify version to clarify which version we use. -FROM golang:1.19.0-bullseye +FROM golang:1.20.3-bullseye # Install Node.js. Go is already installed. # A small tweak, apt-get update is already run by the nodejs setup script,