Skip to content

Commit

Permalink
fix: avoid HERMETIC_PYTHON_VERSION errors (#1292)
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler authored Jan 5, 2025
1 parent c72db36 commit 0243240
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/linux/x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ RUN add-apt-repository ppa:deadsnakes/ppa -y && \
apt-get install -y --no-install-recommends python3.12 python3.12-dev python3.12-venv python3-pip && \
curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3.12 get-pip.py && \
update-alternatives --install /usr/local/bin/python python /usr/bin/python3.12 10
update-alternatives --install /usr/bin/python python /usr/bin/python3.12 10 && \
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 10


FROM base AS android
Expand Down

0 comments on commit 0243240

Please sign in to comment.