From 382d08e0566f361e5e0ca3f166489e1f05367909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Lindahl?= Date: Thu, 19 Mar 2026 00:14:00 +0100 Subject: [PATCH] add Mesa Vulkan drivers for GPU compute workloads Enables Vulkan-based GPU acceleration for containerized workloads like ollama/llama.cpp on Radeon 780M iGPUs without needing ROCm. --- build-image.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-image.sh b/build-image.sh index ce7b057..2a6a1ef 100755 --- a/build-image.sh +++ b/build-image.sh @@ -138,6 +138,12 @@ apt-get install -y \ containerd \ runc +# Vulkan drivers for GPU compute workloads (ollama, llama.cpp) +apt-get install -y \ + mesa-vulkan-drivers \ + libvulkan1 \ + vulkan-tools + # Useful tools apt-get install -y \ htop \