From c643e2f4871147ce060252d18b76e20e3f020fa8 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 11d34a082..77c9d0534 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