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 <contact@blob42.xyz>
This commit is contained in:
Chakib Benziane
2025-10-24 09:03:11 +02:00
committed by GitHub
parent b66bd2706f
commit c28e5b39d6

View File

@@ -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