a748ceb
1
2
3
4
5
6
FROM python:3.9 WORKDIR /app COPY . /app RUN pip install -r requirements.txt CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app