From c7984576b831b1f0a522f15a9b67dc5f0dc8cc3e Mon Sep 17 00:00:00 2001 From: Joshua Date: Mon, 7 Oct 2024 12:27:24 +0800 Subject: [PATCH] upgrade to python 3.9 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index be9ef92..c5bf76d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,15 +13,15 @@ RUN dnf install -y epel-release dnf-utils ca-certificates curl gnupg && \ RUN dnf install -y \ lsof \ java-17-openjdk \ - python38 \ - python38-devel \ + python39 \ + python39-devel \ gcc \ jq \ unzip \ tmux -# Set up Python 3.8 and pip -RUN alternatives --set python3 /usr/bin/python3.8 && \ +# Set up Python 3.9 and pip +RUN alternatives --set python3 /usr/bin/python3.9 && \ curl https://bootstrap.pypa.io/get-pip.py | python3 # Install pip dependencies