LibreTranslate/Dockerfile

48 lines
1.2 KiB
Docker
Raw Normal View History

2022-09-13 12:21:44 +00:00
FROM python:3.8.12-slim-bullseye as builder
ARG with_models=false
ARG models=
2021-01-19 17:57:29 +00:00
WORKDIR /app
2021-11-09 15:00:38 +00:00
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qq \
&& apt-get -qqq install --no-install-recommends -y libicu-dev pkg-config gcc g++ \
&& apt-get clean \
&& rm -rf /var/lib/apt
RUN apt-get update && apt-get upgrade --assume-yes
2022-09-13 12:21:44 +00:00
RUN python -mvenv venv && ./venv/bin/pip install --upgrade pip
2021-02-09 13:17:06 +00:00
COPY . .
RUN if [ "$with_models" = "true" ]; then \
# install only the dependencies first
2022-09-13 12:21:44 +00:00
./venv/bin/pip install -e .; \
# initialize the language models
if [ ! -z "$models" ]; then \
2022-09-13 12:21:44 +00:00
./venv/bin/python install_models.py --load_only_lang_codes "$models"; \
else \
2022-09-13 12:21:44 +00:00
./venv/bin/python install_models.py; \
fi \
fi
2021-02-09 13:17:06 +00:00
# Install package from source code
2022-09-13 12:21:44 +00:00
RUN ./venv/bin/pip install . \
&& ./venv/bin/pip cache purge
FROM python:3.8.12-slim-bullseye
RUN addgroup --system --gid 1032 libretranslate && adduser --system --uid 1032 libretranslate
RUN apt-get update -qq && apt-get -qqq install --no-install-recommends -y libicu67 && apt-get clean && rm -rf /var/lib/apt
USER libretranslate
COPY --from=builder --chown=libretranslate:libretranslate /app /app
WORKDIR /app
EXPOSE 5000
2022-09-13 12:21:44 +00:00
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "0.0.0.0" ]