diff --git a/Dockerfile b/Dockerfile index a191fec3f195e7184e9c8e42e40e33c439586b92..f978836342c7a43712d8112f31ed649f69fe1635 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,17 @@ -FROM debian:bullseye +FROM debian:bookworm # Python Packages -RUN apt-get update && apt-get install -y \ +RUN set -x && \ + apt update && \ + apt install -y --no-install-recommends \ python3 \ - python3-pip + python3-pip \ + python3-flask \ + python3-gunicorn \ + python3-jinja2 \ + apt -qq clean -# pip Packages -RUN pip3 install \ - flask==1.0.2 \ - gunicorn \ - --upgrade # start Script COPY entrypoint_dev.sh /opt/entrypoint_dev.sh