From 271cc79709c4ec36131e00d5e0397a41f697b468 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 12 Jan 2026 07:51:09 +0100 Subject: [PATCH 1/2] chore(backends): do not bundle cuda target directory (#7982) Signed-off-by: Ettore Di Giacinto --- scripts/build/package-gpu-libs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/build/package-gpu-libs.sh b/scripts/build/package-gpu-libs.sh index 6b202b68a403..8fc2a59c8599 100755 --- a/scripts/build/package-gpu-libs.sh +++ b/scripts/build/package-gpu-libs.sh @@ -148,10 +148,10 @@ package_cuda_libs() { done # Copy CUDA target directory for runtime compilation support - if [ -d "/usr/local/cuda/targets" ]; then - mkdir -p "$TARGET_LIB_DIR/../cuda" - cp -arfL /usr/local/cuda/targets "$TARGET_LIB_DIR/../cuda/" 2>/dev/null || true - fi + # if [ -d "/usr/local/cuda/targets" ]; then + # mkdir -p "$TARGET_LIB_DIR/../cuda" + # cp -arfL /usr/local/cuda/targets "$TARGET_LIB_DIR/../cuda/" 2>/dev/null || true + # fi echo "CUDA libraries packaged successfully" } From 7891c33cb11048069be9d01c92be00eb28a639ea Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 12 Jan 2026 07:51:26 +0100 Subject: [PATCH 2/2] chore(vulkan): bump vulkan-sdk to 1.4.335.0 (#7981) Signed-off-by: Ettore Di Giacinto --- Dockerfile | 18 +++++++++--------- backend/Dockerfile.golang | 18 +++++++++--------- backend/Dockerfile.llama-cpp | 18 +++++++++--------- backend/Dockerfile.python | 18 +++++++++--------- 4 files changed, 36 insertions(+), 36 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30127f3b1da0..29570be8b699 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,22 +42,22 @@ RUN <