From c28e5b39d6b9533ad47d746209799c4425a748b5 Mon Sep 17 00:00:00 2001 From: Chakib Benziane Date: Fri, 24 Oct 2025 09:03:11 +0200 Subject: [PATCH] fix: llama dockerfile make package (#6694) the make package rule does not currently always run resulting in an empty scratch image. - added `make -B` flag to force the `make package` rule Signed-off-by: blob42 --- backend/Dockerfile.llama-cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile.llama-cpp b/backend/Dockerfile.llama-cpp index 6d679eb0c..6f327223b 100644 --- a/backend/Dockerfile.llama-cpp +++ b/backend/Dockerfile.llama-cpp @@ -197,7 +197,7 @@ EOT # Copy libraries using a script to handle architecture differences -RUN make -C /LocalAI/backend/cpp/llama-cpp package +RUN make -BC /LocalAI/backend/cpp/llama-cpp package FROM scratch