task_generator / Dockerfile
reginafeles's picture
Upload 40 files
d2213a5 verified
raw
history blame contribute delete
152 Bytes
FROM python:3.13-slim
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]