Move initialization into final image build

This commit is contained in:
Eugene Davis 2022-09-13 21:24:18 +02:00
parent 2a5e84730a
commit 81f667b214
No known key found for this signature in database
GPG key ID: 4F8D810C1E74BE07

View file

@ -17,23 +17,11 @@ RUN python -mvenv venv && ./venv/bin/pip install --upgrade pip
COPY . .
RUN if [ "$with_models" = "true" ]; then \
# install only the dependencies first
./venv/bin/pip install -e .; \
# initialize the language models
if [ ! -z "$models" ]; then \
./venv/bin/python install_models.py --load_only_lang_codes "$models"; \
else \
./venv/bin/python install_models.py; \
fi \
fi
# Install package from source code
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
@ -43,5 +31,14 @@ USER libretranslate
COPY --from=builder --chown=libretranslate:libretranslate /app /app
WORKDIR /app
RUN if [ "$with_models" = "true" ]; then \
# initialize the language models
if [ ! -z "$models" ]; then \
./venv/bin/python install_models.py --load_only_lang_codes "$models"; \
else \
./venv/bin/python install_models.py; \
fi \
fi
EXPOSE 5000
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "0.0.0.0" ]