-
Notifications
You must be signed in to change notification settings - Fork 17
OKD-322: Update install.sh to work on CentOS/RHEL 10 #62
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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; } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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/"} | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.