docker : force Python 3.13 in Vulkan container (#20530)

* ci: force Python 3.13 in Vulkan container

* remove unnecessary `update-alternatives` line
This commit is contained in:
Gerard Guillemas Martos 2026-03-14 21:37:09 +01:00 committed by GitHub
parent 3a6f059909
commit fc350fdf96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -53,10 +53,11 @@ RUN apt-get update \
&& apt-get install -y \
build-essential \
git \
python3 \
python3-dev \
python3.13 \
python3.13-dev \
python3-pip \
python3-wheel \
&& update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.13 100 \
&& pip install --break-system-packages --upgrade setuptools \
&& pip install --break-system-packages -r requirements.txt \
&& apt autoremove -y \