diff --git a/Dockerfile b/Dockerfile index fc5488ab8..a71439b56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ ARG TARGET RUN git config --global --add safe.directory ${PWD} RUN make ${TARGET} -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 ARG TARGET diff --git a/Dockerfile.must-gather b/Dockerfile.must-gather index dc0db1a9d..0f8207572 100644 --- a/Dockerfile.must-gather +++ b/Dockerfile.must-gather @@ -1,6 +1,6 @@ FROM quay.io/openshift/origin-cli:4.15 as builder -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 RUN microdnf update -y \ && microdnf install -y tar rsync findutils gzip iproute util-linux shadow-utils \ diff --git a/Dockerfile.signimage b/Dockerfile.signimage index 8fa8e22ec..6a27c9be7 100644 --- a/Dockerfile.signimage +++ b/Dockerfile.signimage @@ -1,11 +1,11 @@ -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 as ksource +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 as ksource # install the package that will contain the sign utilities RUN microdnf update -y && \ microdnf install -y kernel-devel && \ microdnf clean all -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 COPY --from=ksource /usr/src/kernels/*/scripts/sign-file /usr/local/bin/ diff --git a/Dockerfile.worker b/Dockerfile.worker index 8dd710311..e67b2c548 100644 --- a/Dockerfile.worker +++ b/Dockerfile.worker @@ -24,7 +24,7 @@ COPY .git .git RUN git config --global --add safe.directory ${PWD} RUN ["make", "worker"] -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 RUN microdnf update -y && \ microdnf install -y kmod shadow-utils && \