From fe65d45e8ec941408deefc0b6e110a18836aac2b Mon Sep 17 00:00:00 2001 From: Wen Zhou Date: Thu, 26 Jun 2025 14:39:46 +0200 Subject: [PATCH] update: add back /.cache - Huggingface might still need this e.g sentence-transformers Signed-off-by: Wen Zhou --- llama_stack/distribution/build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/build_container.sh b/llama_stack/distribution/build_container.sh index cc2ef215e..d9a918fb5 100755 --- a/llama_stack/distribution/build_container.sh +++ b/llama_stack/distribution/build_container.sh @@ -262,7 +262,7 @@ fi # Add other require item commands genearic to all containers add_to_container << EOF -RUN mkdir -p /.llama && chmod -R g+rw /app /.llama +RUN mkdir -p /.llama /.cache && chmod -R g+rw /app /.llama /.cache EOF printf "Containerfile created successfully in %s/Containerfile\n\n" "$TEMP_DIR"