From 3afb5731af22f1b00da76365241351e26c83063f Mon Sep 17 00:00:00 2001 From: previ Date: Sat, 22 Jun 2024 16:55:43 +0200 Subject: [PATCH] bump python to 3.9 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 72fd7b3..c95b966 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Build Python packages to avoid need for builds in main image -FROM python:3.8.10-alpine3.14 AS python-buildstep +FROM python:3.9.19-alpine3.20 AS python-buildstep # Prevent pip 'warn script location' warnings. Equivalent to --no-warn-script-location ENV PATH=/root/.local/bin:$PATH @@ -20,7 +20,7 @@ RUN pip install --user -r /tmp/requirements.txt --no-cache-dir ## Compile container -FROM python:3.8.10-alpine3.14 +FROM python:3.9.19-alpine3.20 # Set system environment variables ENV FLASK_APP=run