mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-05 15:30:17 +01:00
b6219cb605
Remove pip to close IN1-PYTHON-PIP-1278135 apt-get upgrade to close CVE-2022-1664, CVE-2022-1304, and CVE-2022-2068
37 lines
792 B
Docker
37 lines
792 B
Docker
FROM python:3.8.12-slim-bullseye
|
|
|
|
ARG with_models=false
|
|
ARG models=
|
|
|
|
WORKDIR /app
|
|
|
|
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
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
COPY . .
|
|
|
|
|
|
RUN if [ "$with_models" = "true" ]; then \
|
|
# install only the dependencies first
|
|
pip install -e .; \
|
|
# initialize the language models
|
|
if [ ! -z "$models" ]; then \
|
|
./install_models.py --load_only_lang_codes "$models"; \
|
|
else \
|
|
./install_models.py; \
|
|
fi \
|
|
fi
|
|
# Install package from source code
|
|
RUN pip install . \
|
|
&& pip cache purge
|
|
|
|
EXPOSE 5000
|
|
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]
|