summaryrefslogtreecommitdiff
path: root/Dockerfile.simple
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2022-05-11 13:08:25 +0200
committerSebastiaan van Stijn <github@gone.nl>2022-05-11 13:08:25 +0200
commitd294078dd06f0eaa8faededf72d5e63fd6a6912e (patch)
treef669021abb7892d6fd9c25fd20e47eb40de3b1b4 /Dockerfile.simple
parentb1e30e83289cb57d1ceab6bb0103f4a6dbdcca7a (diff)
downloaddocker-d294078dd06f0eaa8faededf72d5e63fd6a6912e.tar.gz
update golang to 1.18.2
go1.18.2 (released 2022-05-10) includes security fixes to the syscall package, as well as bug fixes to the compiler, runtime, the go command, and the crypto/x509, go/types, net/http/httptest, reflect, and sync/atomic packages. See the Go 1.18.2 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.18.2+label%3ACherryPickApproved Full diff: http://github.com/golang/go/compare/go1.18.1...go1.18.2 Includes fixes for: - CVE-2022-29526 (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-29526); (description at https://go.dev/issue/52313). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Diffstat (limited to 'Dockerfile.simple')
-rw-r--r--Dockerfile.simple2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.simple b/Dockerfile.simple
index 750c39ce1d..a328496bae 100644
--- a/Dockerfile.simple
+++ b/Dockerfile.simple
@@ -5,7 +5,7 @@
# This represents the bare minimum required to build and test Docker.
-ARG GO_VERSION=1.18.1
+ARG GO_VERSION=1.18.2
ARG BASE_DEBIAN_DISTRO="bullseye"
ARG GOLANG_IMAGE="golang:${GO_VERSION}-${BASE_DEBIAN_DISTRO}"