Add pip install upgrade to Dockerfile

A new package more-itertools (v7.2.0) is pulled in the latest build
environment which is not compatible with python 2.x. Upgraded pip
version helps to constraint the more-itertools version being pulled
to version 5.0.0.

Change-Id: I52416d66c1749499c675e3f4d6f1761a9859d1a4
This commit is contained in:
Chi Lo 2019-09-13 10:24:37 -07:00
parent 8e7171da6f
commit 3ccba6fc5b
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ libssl-dev --no-install-recommends \
/usr/share/doc \
/usr/share/doc-base
RUN pip install --upgrade pip
RUN pip install wheel
COPY . /tmp/ranger-agent