]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
docker : force Python 3.13 in Vulkan container (#20530)
authorGerard Guillemas Martos <redacted>
Sat, 14 Mar 2026 20:37:09 +0000 (21:37 +0100)
committerGitHub <redacted>
Sat, 14 Mar 2026 20:37:09 +0000 (21:37 +0100)
* ci: force Python 3.13 in Vulkan container

* remove unnecessary `update-alternatives` line

.devops/vulkan.Dockerfile

index 5d6c87ed6b98a930a115a82fb8d0ce1654dc97a2..3112ec85efae8ef62721ad0d882366d4db552d44 100644 (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 \