Spaces:
Sleeping
Sleeping
| FROM python:3.11.9 | |
| WORKDIR /app | |
| # Install Python dependencies | |
| # Copy root requirements | |
| COPY requirements.txt . | |
| RUN pip install -r requirements.txt | |
| # Copy application code | |
| COPY . . | |
| # Run the startup command | |
| CMD ["python", "app.py"] | |
| EXPOSE 7860 | |