diff --git a/execution-environment.yml b/execution-environment.yml index e99de5b2..41399402 100644 --- a/execution-environment.yml +++ b/execution-environment.yml @@ -69,5 +69,8 @@ additional_build_steps: - COPY --from=quay.io/ansible/receptor:devel /usr/bin/receptor /usr/bin/receptor - RUN mkdir -p /var/run/receptor - RUN git lfs install --system - # SymLink `python` -> `python3.11` - - RUN alternatives --install /usr/bin/python python /usr/bin/python3.11 311 + # 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