From 97f6e8a07bfb522a5865771a122bcb656a3ebf12 Mon Sep 17 00:00:00 2001 From: Joshua Casey Date: Wed, 8 Nov 2023 10:09:42 -0600 Subject: [PATCH] Bump golang to 1.21.4 in the Dockerfiles --- Dockerfile | 2 +- hack/Dockerfile_fips | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6ed8aabf6..93065599d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # Prepare to cross-compile by always running the build stage in the build platform, not the target platform. -FROM --platform=$BUILDPLATFORM golang:1.21.3 as build-env +FROM --platform=$BUILDPLATFORM golang:1.21.4 as build-env WORKDIR /work diff --git a/hack/Dockerfile_fips b/hack/Dockerfile_fips index 1d3f50209..e8cf33173 100644 --- a/hack/Dockerfile_fips +++ b/hack/Dockerfile_fips @@ -18,7 +18,7 @@ # This is not currently using --platform to prepare to cross-compile because we use gcc below to build # platform-specific GCO code. This makes multi-arch builds slow due to target platform emulation. -FROM golang:1.21.3 as build-env +FROM golang:1.21.4 as build-env WORKDIR /work