From 26a739c7cd9066d930e3f018ca85c1d2bb616aa3 Mon Sep 17 00:00:00 2001 From: BadStorm Developer Date: Thu, 5 Feb 2026 20:56:17 +0100 Subject: [PATCH] Tar fix --- Services/llamacpp.Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/llamacpp.Containerfile b/Services/llamacpp.Containerfile index 1f73e59..56a8906 100644 --- a/Services/llamacpp.Containerfile +++ b/Services/llamacpp.Containerfile @@ -27,7 +27,7 @@ WORKDIR /app RUN VERSION=$(curl -s https://api.github.com/repos/ggml-org/llama.cpp/releases/latest | grep '"tag_name"' | head -1 | sed 's/.*"tag_name": "\([^"]*\)".*/\1/') \ && echo "Last llama.cpp version: $VERSION" \ && curl -L https://github.com/ggml-org/llama.cpp/releases/download/${VERSION}/llama-${VERSION}-bin-ubuntu-vulkan-x64.tar.gz -o llama.tar.gz \ - && tar -xzf llama.tar.gz -C . \ + && tar -xzf llama.tar.gz -C . --strip-components=1 \ && rm llama.tar.gz RUN chmod +x /app/llama-server