Updated to latest python versions

This commit is contained in:
2025-04-20 22:21:51 -04:00
parent bda31cf4ce
commit 8a93f794d6
4 changed files with 26 additions and 21 deletions
+17 -13
View File
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.13
LABEL maintainer="Jeffrey Phillips Freeman jeffrey.freeman@cleverthis.com"
@@ -12,7 +12,7 @@ RUN apt update -y && \
apt-get dist-upgrade -y && \
apt-get install -y --no-install-recommends \
libssl-dev \
libreadline-gplv2-dev \
libreadline-dev \
libncursesw5-dev \
libssl-dev \
libsqlite3-dev \
@@ -24,18 +24,22 @@ RUN apt update -y && \
apt-get clean && \
rm -r /var/lib/apt/lists/*
#RUN pyenv install 2.7.18 && \
# pyenv install 3.3.7 && \
# pyenv install 3.4.10 && \
# pyenv install 3.5.10 && \
# pyenv install 3.9.0 && \
# pyenv install pypy-5.7.1
RUN pyenv install 3.13.3 && \
pyenv install 3.12.10 && \
pyenv install 3.11.12 && \
pyenv install 3.10.17 && \
pyenv install 3.9.21 && \
pyenv install 3.8.20 && \
pyenv install pypy-7.3.19 && \
pyenv global 3.13.3 && \
pyenv global 3.12.10 && \
pyenv global 3.11.12 && \
pyenv global 3.10.17 && \
pyenv global 3.9.21 && \
pyenv global 3.8.20 && \
pyenv global pypy-7.3.19
RUN pyenv install 3.9.0 && \
pyenv install 2.7.18 && \
pyenv global 2.7.18 && \
pyenv global 3.9.0
RUN /.pyenv/versions/3.9.0/bin/python3.9 -m pip install --upgrade pip
RUN /.pyenv/versions/3.13.3/bin/python3.13 -m pip install --upgrade pip
RUN pip install tox
RUN mkdir -p /usr/src/boilerplate && \