From 04b10289779178a4c852a393782546d20ade7592 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Wed, 28 Feb 2024 14:16:58 -0500 Subject: [PATCH] test building python 3.11 and 3.11 in intel ubuntu 20.04 --- ubuntu-20.04/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ubuntu-20.04/Dockerfile b/ubuntu-20.04/Dockerfile index 3c809ec..4166872 100644 --- a/ubuntu-20.04/Dockerfile +++ b/ubuntu-20.04/Dockerfile @@ -59,6 +59,8 @@ RUN cd ~ && \ # Set up pyenv \ RUN git clone https://github.com/pyenv/pyenv.git ~/.pyenv && \ pyenv install 3.10 && \ + pyenv install 3.11 && \ + pyenv install 3.12 && \ pyenv global 3.10 && \ pip install --upgrade pip && \ pip install --no-cache-dir py3createtorrent && \