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 6473d64 commit 6fe2264Copy full SHA for 6fe2264
.devops/cpu.Dockerfile
@@ -12,9 +12,9 @@ WORKDIR /app
12
COPY . .
13
14
RUN if [ "$TARGETARCH" = "amd64" ]; then \
15
- cmake -S . -B build -DGGML_BACKEND_DL=ON -DGGML_NATIVE=OFF -DGGML_CPU_ALL_VARIANTS=ON -DLLAMA_CURL=ON -DCMAKE_BUILD_TYPE=Release; \
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DLLAMA_CURL=ON -DGGML_BACKEND_DL=ON -DGGML_NATIVE=OFF -DGGML_CPU_ALL_VARIANTS=ON; \
16
else \
17
- cmake -S . -B build -DCMAKE_BUILD_TYPE=Release; \
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DLLAMA_CURL=ON; \
18
fi && \
19
cmake --build build -j $(nproc)
20
0 commit comments