Skip to content

Commit c4966a1

Browse files
committed
update Python version to 3.13.5
1 parent 7e2bb55 commit c4966a1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ RUN apt update && \
6464
# Install Python 3.13.x
6565
# https://www.python.org/downloads/
6666
RUN cd /tmp && \
67-
curl --remote-name https://www.python.org/ftp/python/3.13.3/Python-3.13.3.tgz && \
68-
tar xzf Python-3.13.3.tgz && \
69-
rm --force Python-3.13.3.tgz && \
70-
cd Python-3.13.3 && \
67+
curl --remote-name https://www.python.org/ftp/python/3.13.5/Python-3.13.5.tgz && \
68+
tar xzf Python-3.13.5.tgz && \
69+
rm --force Python-3.13.5.tgz && \
70+
cd Python-3.13.5 && \
7171
CFLAGS="-Os" ./configure --disable-static --enable-optimizations --enable-shared --with-lto --without-tests && \
7272
./configure && \
7373
make && \
7474
make install && \
7575
cd .. && \
76-
rm --force --recursive Python-3.13.3 && \
76+
rm --force --recursive Python-3.13.5 && \
7777
ln --relative --symbolic /usr/local/bin/pip3 /usr/local/bin/pip && \
7878
ln --relative --symbolic /usr/local/bin/python3 /usr/local/bin/python && \
7979
pip3 install --no-cache-dir --upgrade pip

0 commit comments

Comments
 (0)