File tree 2 files changed +4
-8
lines changed
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 \
13
13
&& apt-get -y install libcurl4-openssl-dev
14
14
WORKDIR /app
15
15
COPY . .
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
17
17
18
18
# runtime image
19
19
FROM --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
54
54
55
55
# Build docker container - assume we need to build the base images?
56
56
docker-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}
64
60
65
61
# Build llama libraries
66
62
llamacpp : submodule-checkout
You can’t perform that action at this time.
0 commit comments