2022-06-21 00:20:07 +02:00
|
|
|
FROM nvidia/cuda:11.2.2-devel-ubuntu20.04
|
|
|
|
|
|
|
|
ENV ARGOS_DEVICE_TYPE cuda
|
|
|
|
ARG with_models=true
|
|
|
|
ARG models=
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update -qq \
|
|
|
|
&& apt-get -qqq install --no-install-recommends -y libicu-dev libaspell-dev libcairo2 libcairo2-dev pkg-config gcc g++ python3.8-dev python3-pip libpython3.8-dev\
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt
|
|
|
|
|
2022-07-25 19:26:38 +02:00
|
|
|
RUN apt-get update && apt-get upgrade --assume-yes
|
|
|
|
|
|
|
|
RUN pip3 install --upgrade pip && apt-get remove python3-pip --assume-yes
|
2022-06-21 00:20:07 +02:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN ln -s /usr/bin/python3 /usr/bin/python
|
|
|
|
|
2022-07-03 18:24:22 +02:00
|
|
|
RUN pip3 install torch==1.12.0+cu116 -f https://download.pytorch.org/whl/torch_stable.html
|
|
|
|
|
2022-06-21 00:20:07 +02:00
|
|
|
RUN if [ "$with_models" = "true" ]; then \
|
|
|
|
# install only the dependencies first
|
|
|
|
pip3 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 pip3 install . \
|
|
|
|
&& pip3 cache purge
|
2022-07-03 18:24:22 +02:00
|
|
|
|
|
|
|
# Depending on your cuda install you may need to uncomment this line to allow the container to access the cuda libraries
|
|
|
|
# See: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#post-installation-actions
|
|
|
|
# ENV LD_LIBRARY_PATH=/usr/local/cuda/lib:/usr/local/cuda/lib64
|
|
|
|
|
2022-06-21 00:20:07 +02:00
|
|
|
EXPOSE 5000
|
|
|
|
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]
|