From 4728158bcff6fe1ba77d864a784af3c49aa945cf Mon Sep 17 00:00:00 2001 From: baldurk Date: Sat, 15 Aug 2026 13:16:28 +0100 Subject: [PATCH] Update docker build to compile python 3.8 for linux builds --- util/buildscripts/scripts/docker/prepare.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/buildscripts/scripts/docker/prepare.sh b/util/buildscripts/scripts/docker/prepare.sh index f68741686..fec9927c1 100755 --- a/util/buildscripts/scripts/docker/prepare.sh +++ b/util/buildscripts/scripts/docker/prepare.sh @@ -131,9 +131,9 @@ make install cd .. # build python locally to static link against -wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz -tar xf Python-3.6.1.tgz -cd Python-3.6.1 +wget https://www.python.org/ftp/python/3.8.20/Python-3.8.20.tgz +tar xf Python-3.8.20.tgz +cd Python-3.8.20 ./configure --prefix=/usr make -j$(nproc) make install