From 5067098202db46e0919329cf4b58fadc7dd74ddc Mon Sep 17 00:00:00 2001 From: dab Date: Thu, 1 May 2025 19:05:38 +0000 Subject: [PATCH] Update llama_cpp/Dockerfile new day new dep --- llama_cpp/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/llama_cpp/Dockerfile b/llama_cpp/Dockerfile index 4234b5c..4fdf72a 100644 --- a/llama_cpp/Dockerfile +++ b/llama_cpp/Dockerfile @@ -7,6 +7,7 @@ RUN adduser --disabled-password --gecos '' --uid ${U_ID} ${U_NAME} RUN apt-get update && apt-get install -y \ git \ cmake g++ \ + libcurl4-openssl-dev \ && rm -rf /var/lib/apt/lists/* WORKDIR /home/${U_NAME}