diff options
author | Stephen Finucane <stephen@that.guru> | 2020-04-08 23:02:33 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2020-04-08 23:34:54 +0100 |
commit | 801106e3333ec0b29a490c1442f5e85d5465f345 (patch) | |
tree | 26a33c5339100f65d0c994bdc1d2c445e8bcf27d /tools/docker | |
parent | 3cb9dcf9c92d7e6e3a06af40411253a0a2ca0e60 (diff) | |
download | patchwork-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>
Diffstat (limited to 'tools/docker')
-rw-r--r-- | tools/docker/Dockerfile | 4 |
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) |