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
&& { dnf remove -y python3-six || true; }
Comment thread
jatinsu marked this conversation as resolved.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: For future reference, please add a comment explaining why we're removing this. Also, please update the PR description with the correct details.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for the delay, would you like me to add this now? If not, I can add the verified label.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, please add the comment and get a test build out from ART team before doing a final merge.


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