From e2fbf1998bd45c99bc44382798f240d08651dd6c Mon Sep 17 00:00:00 2001 From: Hank Donnay Date: Wed, 5 Jun 2024 14:42:57 -0500 Subject: [PATCH] Dockerfile: add `GOTOOLCHAIN` Changes in go1.21 means the build recipe here was doing the wrong thing. This should restore the expected behavior of using the toolchain present in the container. Signed-off-by: Hank Donnay --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6fdd04375d..fb717241e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +ARG GOTOOLCHAIN=local ARG GO_VERSION=1.21 FROM quay.io/projectquay/golang:${GO_VERSION} AS build WORKDIR /build