From 339b5221bc33254329f79f2374f6114be6f30aed Mon Sep 17 00:00:00 2001 From: Brian May Date: Thu, 6 Feb 2025 09:06:29 +1100 Subject: [PATCH] fix: Remove more references to legacy Python versions --- scripts/Containerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/Containerfile b/scripts/Containerfile index 9bf96e8..ff01e6f 100644 --- a/scripts/Containerfile +++ b/scripts/Containerfile @@ -7,9 +7,6 @@ FROM ${BASE_IMAGE} as pyenv RUN apk add --no-cache build-base git libffi-dev openssl-dev bzip2-dev zlib-dev readline-dev sqlite-dev ENV PYENV_ROOT=/pyenv RUN curl https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash -RUN /pyenv/bin/pyenv install 2.7 -RUN /pyenv/bin/pyenv install 3.6 -RUN /pyenv/bin/pyenv install 3.8 RUN /pyenv/bin/pyenv install 3.10 RUN bash -xc 'rm -rf /pyenv/{.git,plugins} /pyenv/versions/*/lib/*/{test,config,config-*linux-gnu}' && \ find /pyenv -type d -name __pycache__ -exec rm -rf {} + && \