I have a simple Python app I\'m containing using this dockerfile
FROM python:3.9 WORKDIR / COPY requirements.txt . RUN pip install -r requirements.txt COPY .