From 3e61f28b64549e531fab39f8e03d0a9d9c3c91d4 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Tue, 17 Oct 2023 10:12:43 -0400 Subject: [PATCH 1/2] update python to 3.12.0 --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1ff15bd..97eb1ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 From f0d23b6318b45d0b0354cb6a3b502bab0946ba09 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Tue, 17 Oct 2023 19:06:58 -0400 Subject: [PATCH 2/2] install setuptools --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 97eb1ee..80a5a2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -185,6 +185,7 @@ RUN apt update && \ "pydantic<2" \ render50 \ s3cmd \ + setuptools \ style50 \ "submit50<4"