1
0
mirror of https://github.com/LibreTranslate/LibreTranslate.git synced 2024-07-15 22:00:10 +02:00
LibreTranslate/Dockerfile
2021-02-09 14:17:06 +01:00

14 lines
191 B
Docker

FROM python:3.8
WORKDIR /app
RUN pip install --upgrade pip
COPY . .
# Install package from source code
RUN pip install .
EXPOSE 5000
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]