Skip to content
Snippets Groups Projects
Commit f51224ec authored by calrama's avatar calrama
Browse files

[centos] Add portable python 3.8.12 distribution

parent 3158f0df
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
...@@ -561,3 +561,15 @@ RUN yum install -y \ ...@@ -561,3 +561,15 @@ RUN yum install -y \
json-devel \ json-devel \
&& \ && \
yum clean all yum clean all
# Portable Python 3.8
RUN mkdir -p /opt/python && \
cd /opt/python && \
curl -sSLO https://github.com/niess/python-appimage/releases/download/python3.8/python3.8.12-cp38-cp38-manylinux1_x86_64.AppImage && \
chmod +x python3.8.12-cp38-cp38-manylinux1_x86_64.AppImage && \
./python3.8.12-cp38-cp38-manylinux1_x86_64.AppImage --appimage-extract && \
rm -f python3.8.12-cp38-cp38-manylinux1_x86_64.AppImage && \
mv squashfs-root 3.8
RUN tar -C /opt/python/3.8/ --numeric-owner --xattrs --xattrs-include='*' -cf /opt/python/python-3.8.tar .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment