From 075ae53403d64c420a77a37c67e244d70a7de0e2 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 09:55:51 +0000 Subject: [PATCH] chore(deps): update registry.access.redhat.com/ubi10 docker tag to v10.1-1775011151 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- podvm-payload/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/podvm-payload/Dockerfile b/podvm-payload/Dockerfile index 7fc32e68f8..f21771dabc 100644 --- a/podvm-payload/Dockerfile +++ b/podvm-payload/Dockerfile @@ -11,7 +11,7 @@ # Let's keep it safe and ensure we keep the same base image/repos for all builders. ## GOLANG ## -FROM registry.access.redhat.com/ubi10:10.1-1772441712 as go_builder +FROM registry.access.redhat.com/ubi10:10.1-1775011151 as go_builder ARG ARCH ENV ARCH=${ARCH} @@ -41,7 +41,7 @@ RUN CGO_ENABLED=1 GOOS=linux go build \ RUN cp -r podvm/files/* /artifacts ## RUST ## -FROM registry.access.redhat.com/ubi10:10.1-1772441712 as rust_builder +FROM registry.access.redhat.com/ubi10:10.1-1775011151 as rust_builder USER root # This is registering RHEL when building on an unsubscribed system # If you are running a UBI container on a registered and subscribed RHEL host, @@ -93,7 +93,7 @@ RUN ARCH=$(uname -m) && \ RUN cp /workdir/guest-components/target/release/ttrpc-cdh /artifacts/usr/local/bin/confidential-data-hub # build k8s pause image -FROM registry.access.redhat.com/ubi10:10.1-1772441712 as pause_builder +FROM registry.access.redhat.com/ubi10:10.1-1775011151 as pause_builder RUN dnf install -y gcc glibc-static crun jq RUN mkdir -p /pause_bundle/rootfs COPY podvm-payload/pause/pause.c . @@ -105,7 +105,7 @@ RUN tar czvf /pause-bundle.tar.gz -C / pause_bundle/ ## FINAL IMAGE ## -FROM registry.access.redhat.com/ubi10:10.1-1772441712 +FROM registry.access.redhat.com/ubi10:10.1-1775011151 COPY --from=go_builder /artifacts /artifacts COPY --from=rust_builder /artifacts /artifacts