]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
docker : fix missing binaries in full-cuda image (#9278)
authorslaren <redacted>
Mon, 2 Sep 2024 16:11:13 +0000 (18:11 +0200)
committerGitHub <redacted>
Mon, 2 Sep 2024 16:11:13 +0000 (18:11 +0200)
.devops/full-cuda.Dockerfile

index b8a35424686c906c415511949f7f17c0640d3008..d5acd35e204d3320df346687d552bb6a9dfa26be 100644 (file)
@@ -27,7 +27,7 @@ RUN if [ "${CUDA_DOCKER_ARCH}" != "default" ]; then \
         export CMAKE_ARGS="-DCMAKE_CUDA_ARCHITECTURES=${CUDA_DOCKER_ARCH}"; \
     fi && \
     cmake -B build -DGGML_CUDA=ON -DLLAMA_CURL=ON ${CMAKE_ARGS} -DCMAKE_EXE_LINKER_FLAGS=-Wl,--allow-shlib-undefined . && \
-    cmake --build build --config Release --target llama-cli -j$(nproc) && \
+    cmake --build build --config Release -j$(nproc) && \
     cp build/bin/* .
 
 ENTRYPOINT ["/app/.devops/tools.sh"]