Spaces:
Runtime error
Runtime error
| FROM python:3.10 | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install --upgrade pip \ | |
| && pip install -r requirements.txt | |
| CMD ["python", "train.py"] | |
| FROM python:3.10 | |
| WORKDIR /app | |
| COPY . . | |
| RUN pip install --upgrade pip \ | |
| && pip install -r requirements.txt | |
| CMD ["python", "train.py"] | |