Spaces:
Runtime error
Runtime error
| FROM python:3.11-slim | |
| RUN pip install requests | |
| WORKDIR /app | |
| COPY training.py . | |
| RUN mkdir -p /data | |
| CMD ["python", "training.py"] | |
| FROM python:3.11-slim | |
| RUN pip install requests | |
| WORKDIR /app | |
| COPY training.py . | |
| RUN mkdir -p /data | |
| CMD ["python", "training.py"] | |