Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -32,7 +32,7 @@ RUN git clone --depth 1 https://github.com/ggerganov/llama.cpp.git . && \
|
|
| 32 |
-DGGML_AVX512_VNNI=ON \
|
| 33 |
-DGGML_OPENMP=ON \
|
| 34 |
-DGGML_CURL=ON && \
|
| 35 |
-
cmake --build build --config Release -j
|
| 36 |
cp build/bin/llama-server . && \
|
| 37 |
rm -rf build # Clean up build artifacts to reduce image size
|
| 38 |
|
|
|
|
| 32 |
-DGGML_AVX512_VNNI=ON \
|
| 33 |
-DGGML_OPENMP=ON \
|
| 34 |
-DGGML_CURL=ON && \
|
| 35 |
+
cmake --build build --config Release -j 16 && \
|
| 36 |
cp build/bin/llama-server . && \
|
| 37 |
rm -rf build # Clean up build artifacts to reduce image size
|
| 38 |
|