Skip to content

Commit 048de84

Browse files
authored
docker : fix missing binaries in full-cuda image (ggml-org#9278)
1 parent f771d06 commit 048de84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devops/full-cuda.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN if [ "${CUDA_DOCKER_ARCH}" != "default" ]; then \
2727
export CMAKE_ARGS="-DCMAKE_CUDA_ARCHITECTURES=${CUDA_DOCKER_ARCH}"; \
2828
fi && \
2929
cmake -B build -DGGML_CUDA=ON -DLLAMA_CURL=ON ${CMAKE_ARGS} -DCMAKE_EXE_LINKER_FLAGS=-Wl,--allow-shlib-undefined . && \
30-
cmake --build build --config Release --target llama-cli -j$(nproc) && \
30+
cmake --build build --config Release -j$(nproc) && \
3131
cp build/bin/* .
3232

3333
ENTRYPOINT ["/app/.devops/tools.sh"]

0 commit comments

Comments
 (0)