File size: 137 Bytes
4398c5e
 
 
 
 
1
2
3
4
5
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"]