Spaces:
Runtime error
Runtime error
File size: 296 Bytes
20b9ba0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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"]
|