From 923ba97db4a935d924ba102c97c5191c6decdfdb Mon Sep 17 00:00:00 2001 From: Martin Schuppert Date: Wed, 12 Nov 2025 18:12:54 +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 793dbb857..a527e11ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ 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 # Build the manager binary FROM $GOLANG_BUILDER AS builder