Fix Docker build parallelism flag by removing extra quoting around -j$(nproc)

This commit is contained in:
Donato Capitella
2025-11-12 12:32:09 +00:00
parent a044056534
commit 9529c03e61
+1 -1
View File
@@ -60,7 +60,7 @@ RUN set -euo pipefail \
-DHIP_PATH=/opt/rocm \
-DHIP_PLATFORM=amd \
-DCMAKE_HIP_FLAGS="--rocm-path=/opt/rocm -include /opt/llama.cpp/ggml/src/ggml-cuda/hip_shfl_fix.h -Wno-macro-redefined" \
&& cmake --build build --config Release -- -j\"$(nproc)\" \
&& cmake --build build --config Release -- -j$(nproc) \
&& cmake --install build --config Release