From d97f0e1c03122551dab459615274e4220e7c773b Mon Sep 17 00:00:00 2001 From: Christopher Collins Date: Wed, 5 Aug 2026 11:31:56 -1000 Subject: [PATCH] Update UBI 9 base image to 9.8-1785906690 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump both builder and runtime stages from ubi9:9.7-1778044007 / ubi9:9.8-1781496985 to ubi9:9.8-1785906690. This picks up go-toolset 1.26.5-1.el9_8 (from 1.26.3) and latest RPM security fixes. Created with assistance from Claude 🤖 Signed-off-by: Christopher Collins --- config/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/Dockerfile b/config/Dockerfile index 9d4cf50d..62d7cac7 100644 --- a/config/Dockerfile +++ b/config/Dockerfile @@ -1,5 +1,5 @@ FROM quay.io/konflux-ci/yq:latest AS yq -FROM registry.access.redhat.com/ubi9:9.8-1781496985 AS builder +FROM registry.access.redhat.com/ubi9:9.8-1785906690 AS builder ARG GH_VERSION="2.58.0" ARG GH_SHA256SUM="84feae3d143bc360ea1004b474f124c8cfd75363a5e197d3ce63fe23d9f3a2ea" @@ -19,7 +19,7 @@ RUN curl -L -o kubectl-package ${KUBECTL_PACKAGE_LOCATION} && \ chmod +x kubectl-package && \ mv kubectl-package /usr/local/bin -FROM registry.access.redhat.com/ubi9:9.8-1781496985 +FROM registry.access.redhat.com/ubi9:9.8-1785906690 RUN dnf -y install openssh-clients jq skopeo python3-pyyaml git go-toolset rsync && \ dnf clean all && \