From: Stephen Finucane Date: Wed, 8 Apr 2020 22:02:33 +0000 (+0100) Subject: docker: Remove Python 2.7, 3.5 X-Git-Tag: v3.0.0~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=801106e3333ec0b29a490c1442f5e85d5465f345;p=thirdparty%2Fpatchwork.git docker: Remove Python 2.7, 3.5 We no longer need these dependencies. Signed-off-by: Stephen Finucane --- diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 62ac461b..b53c4432 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -46,9 +46,7 @@ RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-instal git clone https://github.com/momo-lab/xxenv-latest $PYENV_ROOT/plugins/xxenv-latest && \ pyenv update -RUN pyenv latest install 2.7 && \ - pyenv latest install 3.5 && \ - pyenv latest install 3.6 && \ +RUN pyenv latest install 3.6 && \ pyenv latest install 3.7 && \ pyenv latest install 3.8 RUN pyenv global $(pyenv versions --bare | tac)