File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ RUN apt-get update \
1313 && apt-get -y install libcurl4-openssl-dev
1414WORKDIR /app
1515COPY . .
16- RUN LLAMA_CURL=1 GGML_CUDA=1 CUDA_DOCKER_ARCH=all make -j$(nproc) llama-server
16+ RUN LLAMA_CURL=1 GGML_CUDA=1 CUDA_DOCKER_ARCH=all make -j$(nproc) llamacpp
1717
1818# runtime image
1919FROM --platform=${ARCH} ${BASE_IMAGE_RUNTIME} AS runtime
Original file line number Diff line number Diff line change @@ -54,13 +54,9 @@ docker-cuda: docker-dep
5454
5555# Build docker container - assume we need to build the base images?
5656docker-cuda-push : docker-cuda
57- @echo " Building ${DOCKER_TAG_LLAMACPP} "
58- @${DOCKER} build \
59- --tag ${DOCKER_TAG_LLAMACPP} \
60- --build-arg ARCH=${ARCH} \
61- --build-arg BASE_IMAGE_BUILD=${DOCKER_TAG_BASE_BUILD} \
62- --build-arg BASE_IMAGE_RUNTIME=${DOCKER_TAG_BASE_RUNTIME} \
63- -f Dockerfile.llamacpp .
57+ @echo push docker images
58+ @${DOCKER} push ${DOCKER_TAG_BASE_BUILD}
59+ @${DOCKER} push ${DOCKER_TAG_BASE_RUNTIME}
6460
6561# Build llama libraries
6662llamacpp : submodule-checkout
You can’t perform that action at this time.
0 commit comments