Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,18 @@ RUN apt update && \
rm -rf /var/lib/apt/lists/*


# Install Python 3.11.x
# Install Python 3.12.x
# https://www.python.org/downloads/
RUN cd /tmp && \
curl https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz --output Python-3.11.4.tgz && \
tar xzf Python-3.11.4.tgz && \
rm --force Python-3.11.4.tgz && \
cd Python-3.11.4 && \
curl https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tgz --output Python-3.12.0.tgz && \
tar xzf Python-3.12.0.tgz && \
rm --force Python-3.12.0.tgz && \
cd Python-3.12.0 && \
./configure && \
make && \
make install && \
cd .. && \
rm --force --recursive Python-3.11.4 && \
rm --force --recursive Python-3.12.0 && \
ln --relative --symbolic /usr/local/bin/pip3 /usr/local/bin/pip && \
ln --relative --symbolic /usr/local/bin/python3 /usr/local/bin/python && \
pip3 install --no-cache-dir --upgrade pip
Expand Down Expand Up @@ -185,6 +185,7 @@ RUN apt update && \
"pydantic<2" \
render50 \
s3cmd \
setuptools \
style50 \
"submit50<4"

Expand Down