Spaces:
Running
Running
| FROM python:3.10-slim | |
| WORKDIR /app | |
| RUN pip install --no-cache-dir huggingface_hub | |
| COPY worker.py /app/worker.py | |
| CMD ["python", "-u", "/app/worker.py"] | |
| FROM python:3.10-slim | |
| WORKDIR /app | |
| RUN pip install --no-cache-dir huggingface_hub | |
| COPY worker.py /app/worker.py | |
| CMD ["python", "-u", "/app/worker.py"] | |