From 8f334a02c70bd1eb13e624d9214729a725515e6b Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 10:56:02 +0000 Subject: [PATCH] chore(deps): update registry.access.redhat.com/ubi9/ubi-minimal docker tag to v9.8-1782191395 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- src/cloud-api-adaptor/Dockerfile.openshift | 2 +- src/webhook/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cloud-api-adaptor/Dockerfile.openshift b/src/cloud-api-adaptor/Dockerfile.openshift index 7ccf2d094e..607edbcd01 100644 --- a/src/cloud-api-adaptor/Dockerfile.openshift +++ b/src/cloud-api-adaptor/Dockerfile.openshift @@ -88,7 +88,7 @@ ARG TARGETARCH # curl -L -o iptables-wrapper-installer.sh "https://raw.githubusercontent.com/kubernetes-sigs/iptables-wrappers/${version#v*-*-}/iptables-wrapper-installer.sh" && \ # chmod 755 iptables-wrapper-installer.sh -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1780378819 AS base-release +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1782191395 AS base-release USER root RUN --mount=type=secret,id=org_id,required=false --mount=type=secret,id=activation_key,required=false if [[ -f /run/secrets/org_id && -f /run/secrets/activation_key ]]; then \ diff --git a/src/webhook/Dockerfile b/src/webhook/Dockerfile index d1670b97d8..1ce5180c2a 100644 --- a/src/webhook/Dockerfile +++ b/src/webhook/Dockerfile @@ -21,7 +21,7 @@ ARG TARGETARCH ENV GOFLAGS="-tags=strictfipsruntime" RUN CGO_ENABLED=1 GOOS=linux GOARCH=$TARGETARCH go build -mod=readonly -a -o manager main.go -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1780378819 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.8-1782191395 WORKDIR / COPY --from=builder /workspace/manager . USER 65532:65532