LibreTranslate/Dockerfile

14 lines
191 B
Docker
Raw Normal View History

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