FROM python:3.9-slim-buster WORKDIR /app # Install dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the source code COPY app.py . EXPOSE 5000 CMD [ "python", "app.py" ]