From d336f1fa445cc8917e4b6b16fcb1bd9f0361f9e5 Mon Sep 17 00:00:00 2001
From: Christian Elberfeld <elberfeld@web.de>
Date: Sun, 4 Feb 2024 03:01:49 +0100
Subject: [PATCH] upgrade base image

---
 Dockerfile | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 074c48c..a191fec 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,14 +1,11 @@
 
-FROM debian:stretch 
+FROM debian:bullseye 
     
 # Python Packages 
-RUN apt-get update && apt-get install -y \ 	
-    python3 \ 	
+RUN apt-get update && apt-get install -y \
+    python3 \
     python3-pip 
 
-# Upgrade pip    
-RUN pip3 install --upgrade pip 
-
 # pip Packages
 RUN pip3 install \     
     flask==1.0.2 \     
-- 
GitLab