File size: 185 Bytes
3c1a61e
9535a73
 
eaef619
030fb97
 
abb63f7
1
2
3
4
5
6
7
8
FROM python:3.9
COPY . /usr/app/
WORKDIR /usr/app/
RUN pip install --no-cache-dir -r requirements.txt
ENTRYPOINT ["gunicorn", "main:application", "-b", "0.0.0.0:7860", "--workers=1"]