File size: 219 Bytes
09cf842
 
5549b4d
09cf842
5549b4d
09cf842
5549b4d
09cf842
5549b4d
09cf842
5549b4d
1
2
3
4
5
6
7
8
9
10
11
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"]