From 127617bc8881240fb771c865317d174addf92498 Mon Sep 17 00:00:00 2001 From: Christian Elberfeld <elberfeld@web.de> Date: Sun, 4 Feb 2024 03:35:39 +0100 Subject: [PATCH] use debian packages --- Dockerfile | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index a191fec..f978836 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 -- GitLab