Spaces:
Sleeping
Sleeping
| FROM python:3.11 | |
| WORKDIR /app | |
| COPY . . | |
| RUN mkdir -p uploads | |
| EXPOSE 7860 | |
| CMD bash -c "pip install --no-cache-dir -r requirements.txt && python -c 'from app import app; app.run(host=\"0.0.0.0\", port=7860)'" | |