css_design_snippets / Dockerfile
hirushanirmal301
Add Dockerfile
20b9ba0
raw
history blame
296 Bytes
# 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"]