Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile.openshift
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ ARG STATIC_LINK=no

RUN make

FROM registry.redhat.io/rhel9-4-els/rhel-minimal:latest
FROM registry.redhat.io/ubi9/ubi-minimal-pqc:latest

RUN INSTALL_PKGS="tar libseccomp libbpf-devel" && \
RUN INSTALL_PKGS="tar libseccomp libbpf" && \
if [ ! -e /usr/bin/dnf ]; then ln -s /usr/bin/microdnf /usr/bin/dnf; fi && \
dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
dnf clean all && rm -rf /var/cache/*
Expand Down