From fc350fdf96d60474378e382a306d58c67633986c Mon Sep 17 00:00:00 2001 From: Gerard Guillemas Martos Date: Sat, 14 Mar 2026 21:37:09 +0100 Subject: [PATCH] docker : force Python 3.13 in Vulkan container (#20530) * ci: force Python 3.13 in Vulkan container * remove unnecessary `update-alternatives` line --- .devops/vulkan.Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.devops/vulkan.Dockerfile b/.devops/vulkan.Dockerfile index 5d6c87ed6b..3112ec85ef 100644 --- a/.devops/vulkan.Dockerfile +++ b/.devops/vulkan.Dockerfile @@ -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 \