From d3e37f9f69c76a83b4fe7254e43649102b2d5811 Mon Sep 17 00:00:00 2001 From: Vincent Roseberry Date: Thu, 6 Feb 2020 13:21:32 -0800 Subject: [PATCH] Install latest version of pip. We added the pining because pip `20.0.1` introduced an issue with wheels tag matching pip `20.0.2` has since been released and fixes the issue: https://github.com/pypa/pip/issues/7626 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 19aa9ffb..7396c346 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,8 +18,7 @@ RUN sed -i "s/httpredir.debian.org/debian.uchicago.edu/" /etc/apt/sources.list & apt-get update && apt-get install -y build-essential unzip cmake && \ # Work to upgrade to Python 3.7 can be found on this branch: https://github.com/Kaggle/docker-python/blob/upgrade-py37/Dockerfile conda install -y python=3.6.6 && \ - # See b/148097039#comment7 - pip install pip==19.3.1 && \ + pip install --upgrade pip && \ /tmp/clean-layer.sh # The anaconda base image includes outdated versions of these packages. Update them to include the latest version.