Spaces:
Sleeping
Sleeping
| FROM python:3.10-slim | |
| WORKDIR /code | |
| # Install dependencies | |
| COPY requirements.txt /code/ | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy model and app | |
| COPY best_model.pkl /code/ | |
| COPY app.py /code/ | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |