LibreTranslate/Dockerfile

17 lines
322 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
# Avoid rebuilding this step if no changes to requirements.txt
COPY requirements.txt .
RUN pip install -r requirements.txt
2021-01-19 19:05:23 +00:00
# Copy everything else
COPY app app
COPY *.py LICENSE README.md ./
EXPOSE 5000
ENTRYPOINT [ "python", "main.py", "--host", "0.0.0.0" ]