From 801106e3333ec0b29a490c1442f5e85d5465f345 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 8 Apr 2020 23:02:33 +0100 Subject: [PATCH] docker: Remove Python 2.7, 3.5 We no longer need these dependencies. Signed-off-by: Stephen Finucane --- tools/docker/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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) -- 2.47.3