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: 3 additions & 1 deletion openshift/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ RUN dnf clean all && rm -rf /var/cache/dnf/* \
&& dnf update -y \
&& dnf install -y catatonit python3.12-cryptography python3.12-devel gcc \
&& pushd /usr/local/bin && ln -sf ../../bin/python3.12 python3 && popd \
&& python3 -m ensurepip --upgrade
&& python3 -m ensurepip --upgrade \
# python3-six conflicts with pip-installed packages on RHEl/CentOS 10; remove it if present
&& { rpm -q python3-six && dnf remove -y python3-six || true; }

# Add steps for cachito
ENV REMOTE_SOURCES=${REMOTE_SOURCES:-"./openshift/"}
Expand Down