Spaces:
Build error
Build error
| FROM python:3.9-alpine | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| COPY . . | |
| #CMD ["flask", "run", "--host=0.0.0.0"] | |
| #CMD python app.py | |
| CMD ["python", "main.py"] | |