From 943bb5ed40ace233b28c7854e87c903172fc99b9 Mon Sep 17 00:00:00 2001 From: Gordon Inggs Date: Thu, 1 Feb 2024 09:14:48 +0200 Subject: [PATCH] Bumping python version 3.9 --- base/drivers/python_minimal/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/drivers/python_minimal/Dockerfile b/base/drivers/python_minimal/Dockerfile index 3d289ee..14c7611 100644 --- a/base/drivers/python_minimal/Dockerfile +++ b/base/drivers/python_minimal/Dockerfile @@ -10,8 +10,8 @@ RUN DEBIAN_FRONTEND=noninteractive \ add-apt-repository -y ppa:ubuntugis/ppa && \ add-apt-repository -y ppa:deadsnakes/ppa && \ apt-get update && \ - apt-get install -y python3.8 python3.8-distutils python3.8-dev && \ - update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 + apt-get install -y python3.9 python3.9-distutils python3.9-dev && \ + update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 RUN curl https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py && \ python3 /tmp/get-pip.py