LibreTranslate/docker/Dockerfile

44 lines
1.3 KiB
Docker
Raw Normal View History

2023-01-12 13:23:13 +00:00
FROM python:3.10.9-slim-bullseye as builder
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 \
2022-12-11 06:04:12 +00:00
&& apt-get -qqq install --no-install-recommends -y pkg-config gcc g++ \
2021-11-09 15:00:38 +00:00
&& 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 . .
2023-01-06 16:58:32 +00:00
# Install package from source code, compile translations
2023-01-12 13:42:41 +00:00
RUN ./venv/bin/pip install Babel==2.11.0 && ./venv/bin/python scripts/compile_locales.py \
&& ./venv/bin/pip install . \
&& ./venv/bin/pip cache purge
2022-09-13 12:21:44 +00:00
FROM python:3.10.9-slim-bullseye
2022-09-13 12:21:44 +00:00
2022-09-13 21:09:20 +00:00
ARG with_models=false
ARG models=""
2022-09-13 21:09:20 +00:00
2022-12-20 15:33:15 +00:00
RUN addgroup --system --gid 1032 libretranslate && adduser --system --uid 1032 libretranslate && mkdir -p /home/libretranslate/.local && chown -R libretranslate:libretranslate /home/libretranslate/.local
2022-09-13 12:21:44 +00:00
USER libretranslate
2022-09-13 21:09:20 +00:00
COPY --from=builder --chown=1032:1032 /app /app
2022-09-13 12:21:44 +00:00
WORKDIR /app
RUN if [ "$with_models" = "true" ]; then \
# initialize the language models
if [ ! -z "$models" ]; then \
./venv/bin/python scripts/install_models.py --load_only_lang_codes "$models"; \
else \
./venv/bin/python scripts/install_models.py; \
fi \
fi
EXPOSE 5000
2022-09-13 12:21:44 +00:00
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "0.0.0.0" ]