Add llama.cpp docker support for non-latin languages (#1673)

* Modify Dockerfile default character set to improve compatibility (#1673)
This commit is contained in:
qingfengfenga 2023-06-08 15:58:53 +08:00 committed by GitHub
parent b50b570ed9
commit 8fc8179919
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -16,4 +16,6 @@ COPY . .
RUN make
ENV LC_ALL=C.utf8
ENTRYPOINT ["/app/.devops/tools.sh"]

View file

@ -15,4 +15,6 @@ FROM ubuntu:$UBUNTU_VERSION as runtime
COPY --from=build /app/main /main
ENV LC_ALL=C.utf8
ENTRYPOINT [ "/main" ]