add comment

This commit is contained in:
Xuan Son Nguyen 2024-08-28 11:46:16 +02:00
parent 6aaa183ee1
commit 7a383dbe65
3 changed files with 3 additions and 1 deletions

View file

@ -31,6 +31,7 @@ ENV GGML_CUDA=1
# Enable cURL # Enable cURL
ENV LLAMA_CURL=1 ENV LLAMA_CURL=1
# Only build targets used by tools.sh
RUN make -j$(nproc) llama-quantize llama-cli llama-server RUN make -j$(nproc) llama-quantize llama-cli llama-server
ENTRYPOINT ["/app/.devops/tools.sh"] ENTRYPOINT ["/app/.devops/tools.sh"]

View file

@ -45,6 +45,7 @@ ENV LLAMA_CURL=1
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y libcurl4-openssl-dev apt-get install -y libcurl4-openssl-dev
# Only build targets used by tools.sh
RUN make -j$(nproc) llama-quantize llama-cli llama-server RUN make -j$(nproc) llama-quantize llama-cli llama-server
ENTRYPOINT ["/app/.devops/tools.sh"] ENTRYPOINT ["/app/.devops/tools.sh"]

View file

@ -17,7 +17,7 @@ COPY . .
ENV LLAMA_CURL=1 ENV LLAMA_CURL=1
# Only build targets used by tools.sh
RUN make -j$(nproc) llama-quantize llama-cli llama-server RUN make -j$(nproc) llama-quantize llama-cli llama-server
ENV LC_ALL=C.utf8 ENV LC_ALL=C.utf8