Spaces:
Runtime error
Runtime error
# Use official Python image | |
FROM python:3.10 | |
# Set working directory | |
WORKDIR /app | |
# Copy requirements and install dependencies | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy the rest of the code | |
COPY . . | |
# Run the training script | |
CMD ["python", "train.py"] | |