diff --git a/Dockerfile b/Dockerfile index 20bcc18b8..5cbf103a0 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.4 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 ARG TARGET diff --git a/Dockerfile.must-gather b/Dockerfile.must-gather index c1b55bd56..6c88c6192 100644 --- a/Dockerfile.must-gather +++ b/Dockerfile.must-gather @@ -1,6 +1,6 @@ FROM quay.io/openshift/origin-cli:4.20 as builder -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 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 bd8f7136e..1a6675f95 100644 --- a/Dockerfile.signimage +++ b/Dockerfile.signimage @@ -1,11 +1,11 @@ -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4 as ksource +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 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.4 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 COPY --from=ksource /usr/src/kernels/*/scripts/sign-file /usr/local/bin/ diff --git a/Dockerfile.webhook b/Dockerfile.webhook index 6a8f80e23..9afc8a902 100644 --- a/Dockerfile.webhook +++ b/Dockerfile.webhook @@ -25,7 +25,7 @@ COPY .git .git RUN git config --global --add safe.directory ${PWD} RUN make webhook-server -FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 COPY --from=builder /go/webhook-server /usr/local/bin/webhook-server diff --git a/Dockerfile.worker b/Dockerfile.worker index 701df4ec8..9d9cb03ac 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.4 +FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5 RUN microdnf update -y && \ microdnf install -y kmod shadow-utils && \