Python_tutor / Dockerfile
krisha06's picture
Create Dockerfile
18054c4 verified
Raw
History Blame
209 Bytes
FROM python:3.10
# Set working directory
WORKDIR /app
# Copy files
COPY . .
# Install dependencies
RUN pip install -r requirements.txt
# Run fine-tuning when the Space starts
CMD ["python", "finetune.py"]