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"]