We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80fbaef commit 3c85f51Copy full SHA for 3c85f51
Dockerfile
@@ -6,13 +6,14 @@ RUN apk add --update \
6
build-base \
7
cmake \
8
ccache \
9
- git
+ git \
10
+ curl
11
12
# Build llama.cpp server and collect libraries
13
RUN cd /tmp && \
14
git clone https://github.com/ggerganov/llama.cpp.git --depth=1 && \
15
cd llama.cpp && \
- cmake -B build -DGGML_NATIVE=OFF && \
16
+ cmake -B build -DGGML_NATIVE=OFF -DLLAMA_CURL=OFF && \
17
cmake --build build --config Release -j --target llama-server && \
18
mkdir -p /usr/local/lib/llama && \
19
find build -type f \( -name "libllama.so" -o -name "libggml.so" -o -name "libggml-base.so" -o -name "libggml-cpu.so" \) -exec cp {} /usr/local/lib/llama/ \;
0 commit comments