2021-11-09 16:00:38 +01:00
|
|
|
FROM python:3.8.12-slim-bullseye
|
2020-12-21 19:39:53 +01:00
|
|
|
|
2021-03-11 07:21:33 +01:00
|
|
|
ARG with_models=false
|
|
|
|
|
2021-01-19 18:57:29 +01:00
|
|
|
WORKDIR /app
|
|
|
|
|
2021-11-09 16:00:38 +01: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
|
|
|
|
|
2020-12-21 19:39:53 +01:00
|
|
|
RUN pip install --upgrade pip
|
|
|
|
|
2021-02-09 14:17:06 +01:00
|
|
|
COPY . .
|
2020-12-21 19:39:53 +01:00
|
|
|
|
2021-03-11 07:21:33 +01:00
|
|
|
# check for offline build
|
|
|
|
RUN if [ "$with_models" = "true" ]; then \
|
|
|
|
# install only the dependencies first
|
|
|
|
pip install -e .; \
|
|
|
|
# initialize the language models
|
|
|
|
./install_models.py; \
|
|
|
|
fi
|
|
|
|
|
2021-02-09 14:17:06 +01:00
|
|
|
# Install package from source code
|
2021-11-09 16:00:38 +01:00
|
|
|
RUN pip install . \
|
|
|
|
&& pip cache purge
|
2020-12-21 19:39:53 +01:00
|
|
|
|
|
|
|
EXPOSE 5000
|
2021-11-09 16:08:05 +01:00
|
|
|
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]
|