FROM python:3.9.4-alpine3.13 COPY requirements.txt / RUN set -ex \ && pip install -r requirements.txt COPY app.py / CMD python app.py