Skip to content

Commit

Permalink
upgrade python version to 3.10.12
Browse files Browse the repository at this point in the history
  • Loading branch information
yudong2015 committed Dec 11, 2024
1 parent 39aa555 commit 950115b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 38 deletions.
22 changes: 3 additions & 19 deletions python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,6 @@
FROM kubespheredev/builder-base:v3.1.0
FROM kubespheredev/builder-base:v4.1.0

# python3
ENV PYTHON_VERSION=3.7.11
RUN yum -y install bzip2-devel libffi-devel libsqlite3x-devel && \
curl -fSL https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz -o /usr/src/Python-${PYTHON_VERSION}.tgz && \
tar xzf /usr/src/Python-${PYTHON_VERSION}.tgz -C /usr/src/ --no-same-owner && \
cd /usr/src/Python-${PYTHON_VERSION} && \
./configure --enable-optimizations --with-ensurepip=install --enable-loadable-sqlite-extensions && \
make altinstall -j 2 && \
cd ../ && \
rm -rf /usr/src/Python-${PYTHON_VERSION}.tgz /usr/src/Python-${PYTHON_VERSION} && \
ln -fs /usr/local/bin/python3.7 /usr/bin/python && \
ln -fs /usr/local/bin/python3.7 /usr/bin/python3 && \
ln -fs /usr/local/bin/pip3.7 /usr/bin/pip && \
python3 -m pip install --upgrade pip && \
sed -e 's|^#!/usr/bin/python|#!/usr/bin/python2.7|g' -i.bak /usr/bin/yum && \
sed -e 's|^#! /usr/bin/python|#! /usr/bin/python2.7|g' -i.bak /usr/libexec/urlgrabber-ext-down && \
yum -y remove bzip2-devel libffi-devel libsqlite3x-devel && \
yum -y clean all
# python:3.10.12 pip:22.0.2
RUN apt-get install -y python3 pip && apt-get clean autoclean && ln -s /usr/bin/python3 /usr/bin/python

CMD ["python","--version"]
22 changes: 3 additions & 19 deletions python/podman/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,6 @@
FROM kubespheredev/builder-base:v3.1.0-podman
FROM kubespheredev/builder-base:v4.1.0-podman

# python3
ENV PYTHON_VERSION=3.7.11
RUN yum -y install bzip2-devel libffi-devel libsqlite3x-devel && \
curl -fSL https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz -o /usr/src/Python-${PYTHON_VERSION}.tgz && \
tar xzf /usr/src/Python-${PYTHON_VERSION}.tgz -C /usr/src/ --no-same-owner && \
cd /usr/src/Python-${PYTHON_VERSION} && \
./configure --enable-optimizations --with-ensurepip=install --enable-loadable-sqlite-extensions && \
make altinstall -j 2 && \
cd ../ && \
rm -rf /usr/src/Python-${PYTHON_VERSION}.tgz /usr/src/Python-${PYTHON_VERSION} && \
ln -fs /usr/local/bin/python3.7 /usr/bin/python && \
ln -fs /usr/local/bin/python3.7 /usr/bin/python3 && \
ln -fs /usr/local/bin/pip3.7 /usr/bin/pip && \
python3 -m pip install --upgrade pip && \
sed -e 's|^#!/usr/bin/python|#!/usr/bin/python2.7|g' -i.bak /usr/bin/yum && \
sed -e 's|^#! /usr/bin/python|#! /usr/bin/python2.7|g' -i.bak /usr/libexec/urlgrabber-ext-down && \
yum -y remove bzip2-devel libffi-devel libsqlite3x-devel && \
yum -y clean all
# python:3.10.12 pip:22.0.2
RUN apt-get install -y python3 pip && apt-get clean autoclean && ln -s /usr/bin/python3 /usr/bin/python

CMD ["python","--version"]

0 comments on commit 950115b

Please sign in to comment.