From cf99b6fb70586fb6ead9b27d5fdcf61772ac78cb Mon Sep 17 00:00:00 2001 From: Martin Schuppert Date: Wed, 12 Nov 2025 18:12:14 +0100 Subject: [PATCH] Pin base image to 9.6 tag The base image for latest tag got update to 9.7 where fips test started to fail. This pins it for now to the 9.6 tag Signed-off-by: Martin Schuppert --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c425f88..e5101891 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Build the manager binary ARG GOLANG_BUILDER=registry.access.redhat.com/ubi9/go-toolset:1.24 -ARG OPERATOR_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:latest +ARG OPERATOR_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:9.6 FROM $GOLANG_BUILDER AS builder