RU_accent_flask / Dockerfile
shakhovak
updates
5549b4d
raw
history blame
No virus
219 Bytes
FROM python:3.9-alpine
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . /app
CMD ["gunicorn", "-b", "0.0.0.0:7860", "web_interface:app"]