From 59343860ef52e9e4b3061a892ec183a9e386eb6d Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Sun, 11 Jan 2026 22:15:37 +0100 Subject: [PATCH] fix(workaround): install vulkan from repos for amd64 This is a temporary workaround to confirm that the vulkan binary upstream are not built with the same glibc version of ubuntu 24.04, which makes it incompatible. See https://github.com/mudler/LocalAI/issues/7914 Signed-off-by: Ettore Di Giacinto --- Dockerfile | 9 +++++++-- backend/Dockerfile.golang | 7 ++++++- backend/Dockerfile.llama-cpp | 7 ++++++- backend/Dockerfile.python | 7 ++++++- 4 files changed, 25 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30127f3b1da0..d10e16ef1956 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update && \ # The requirements-drivers target is for BUILD_TYPE specific items. If you need to install something specific to CUDA, or specific to ROCM, it goes here. FROM requirements AS requirements-drivers - +ARG VULKAN_FROM_SOURCE=false ARG BUILD_TYPE ARG CUDA_MAJOR_VERSION=12 ARG CUDA_MINOR_VERSION=0 @@ -41,7 +41,7 @@ RUN <