Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ubi9/ubi-minimal from 9.4 to 9.5 #1242

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.must-gather
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.signimage
Original file line number Diff line number Diff line change
@@ -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/

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.webhook
Original file line number Diff line number Diff line change
Expand Up @@ -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 /opt/app-root/src/webhook-server /usr/local/bin/webhook-server

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
Loading