Skip to content

Commit 6fe2264

Browse files
committed
add CURL to other builds
1 parent 6473d64 commit 6fe2264

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.devops/cpu.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ WORKDIR /app
1212
COPY . .
1313

1414
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; \
15+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DLLAMA_CURL=ON -DGGML_BACKEND_DL=ON -DGGML_NATIVE=OFF -DGGML_CPU_ALL_VARIANTS=ON; \
1616
else \
17-
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release; \
17+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DLLAMA_CURL=ON; \
1818
fi && \
1919
cmake --build build -j $(nproc)
2020

0 commit comments

Comments
 (0)