FROM python:3.9-slim RUN pip install flask COPY app.py . EXPOSE 5000 ENTRYPOINT ["python"] CMD ["app.py"]