Update docker build to compile python 3.8 for linux builds

This commit is contained in:
baldurk
2026-08-15 13:16:28 +01:00
parent a2753429bf
commit 4728158bcf
+3 -3
View File
@@ -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