1
0
mirror of https://github.com/LibreTranslate/LibreTranslate.git synced 2024-08-21 13:50:13 +02:00
LibreTranslate/Dockerfile

14 lines
191 B
Docker
Raw Normal View History

FROM python:3.8
2021-01-19 18:57:29 +01:00
WORKDIR /app
RUN pip install --upgrade pip
2021-02-09 14:17:06 +01:00
COPY . .
2021-02-09 14:17:06 +01:00
# Install package from source code
RUN pip install .
EXPOSE 5000
2021-02-09 14:17:06 +01:00
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]