Skip to content
Merged
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 execution-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ additional_build_steps:
# Create user site-packages directory - Allowing lookup plugins to use modules installed via pip
- RUN mkdir -p $($PYCMD -m site --user-site | sed "s|$HOME|$(pwd)|")
- RUN chmod -R ug+rwx $($PYCMD -m site --user-site | sed "s|$HOME|$(pwd)|" | cut -d '/' -f1,2,3)
- RUN dnf update -y && dnf clean all
# SymLink `python` -> `python3.11` and `python3` -> `python3.11` and `pip3` -> `pip3.11`
- >-
RUN alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
&& alternatives --install /usr/bin/python python /usr/bin/python3.11 1
&& alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.11 1
- RUN dnf update -y && dnf clean all
- COPY --chmod=755 _build/files/update-ca-trust /usr/bin/update-ca-trust

Loading