summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2020-04-08 23:02:33 +0100
committerStephen Finucane <stephen@that.guru>2020-04-08 23:34:54 +0100
commit801106e3333ec0b29a490c1442f5e85d5465f345 (patch)
tree26a33c5339100f65d0c994bdc1d2c445e8bcf27d
parent3cb9dcf9c92d7e6e3a06af40411253a0a2ca0e60 (diff)
downloadpatchwork-801106e3333ec0b29a490c1442f5e85d5465f345.tar
patchwork-801106e3333ec0b29a490c1442f5e85d5465f345.tar.gz
docker: Remove Python 2.7, 3.5
We no longer need these dependencies. Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r--tools/docker/Dockerfile4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index 62ac461..b53c443 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)