mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-21 15:31:00 +00:00
Move initialization into final image build
This commit is contained in:
parent
2a5e84730a
commit
81f667b214
1 changed files with 9 additions and 12 deletions
21
Dockerfile
21
Dockerfile
|
@ -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" ]
|
||||
|
|
Loading…
Reference in a new issue