Spaces:
No application file
No application file
| # dockerfile | |
| FROM python:3.10 | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| CMD ["gunicorn", "--bind", "0.0.0.0:$PORT", "app:app"] | |