Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --upgrade pip && pip install -r requirements.txt | |
| # Verify critical packages are present | |
| RUN python -c "import openpyxl; import pandas; print('openpyxl OK')" | |
| COPY . . | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] |