From 7a848aa6cff1d7bdf8061e1c99445dc5c90a19d2 Mon Sep 17 00:00:00 2001 From: Tiger Kaovilai Date: Thu, 2 Apr 2026 11:29:52 -0400 Subject: [PATCH] Set GOTOOLCHAIN=go1.25.7 in konflux.Dockerfile Override the go.mod toolchain go1.25.8 directive to use go1.25.7 during Konflux builds, as go1.25.8 is not yet available in the builder image. Signed-off-by: Tiger Kaovilai Signed-off-by: Tiger Kaovilai --- konflux.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/konflux.Dockerfile b/konflux.Dockerfile index 509166e..2b69918 100644 --- a/konflux.Dockerfile +++ b/konflux.Dockerfile @@ -3,6 +3,7 @@ # into the build context before this Dockerfile runs. FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_golang_1.25 AS builder +ENV GOTOOLCHAIN=go1.25.7 COPY . /workspace WORKDIR /workspace