Spaces:
Runtime error
Runtime error
| FROM python:3.9-slim | |
| # Upgrade pip | |
| RUN pip install --upgrade pip | |
| # Install dependencies from requirements.txt | |
| COPY requirements.txt /tmp/requirements.txt | |
| RUN pip install --no-cache-dir -r /tmp/requirements.txt | |