FROM python:3.9-alpine WORKDIR /app ADD requirements.txt . RUN pip3 install -r requirements.txt ADD static.py . ENTRYPOINT ["python3", "static.py"]