Thank you for your container! I changed the Dockerfile a bit, this Dockerfile will do the same thing but is much lighter ``` FROM python:3.8-alpine RUN pip install flask WORKDIR /deployment ADD ./app.py . CMD python app.py ```