my-free-ai-generator / dockerfile
man08man's picture
Upload 3 files
4398c5e verified
raw
history blame contribute delete
137 Bytes
FROM python:3.9-slim # Use Python 3.9 instead of 3.10
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]