Skip to content
Snippets Groups Projects
Unverified Commit 264a19c4 authored by Piero Toffanin's avatar Piero Toffanin Committed by GitHub
Browse files

Merge pull request #173 from thomas-mc-work/main

Reduce Docker image size
parents ffc0c1dc bdff7c3f
No related branches found
No related tags found
No related merge requests found
.git*
Dockerfile
.Dockerfile.swp
LICENSE
FROM python:3.8
FROM python:3.8.12-slim-bullseye
ARG with_models=false
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 pip install --upgrade pip
COPY . .
......@@ -17,7 +23,8 @@ RUN if [ "$with_models" = "true" ]; then \
fi
# Install package from source code
RUN pip install .
RUN pip install . \
&& pip cache purge
EXPOSE 5000
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment