From: garciadeblas Date: Fri, 8 Jun 2018 07:23:17 +0000 (+0200) Subject: Fix Dockerfile to install pip9.0.3 instead of latest pip X-Git-Tag: BUILD_v4.0.1_1~3 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FIM.git;a=commitdiff_plain;h=5c68bd95e8f3e916be7152cb6c409377fab43e6b;ds=sidebyside Fix Dockerfile to install pip9.0.3 instead of latest pip Change-Id: Id3da61fb9c6bb2f93daedd6c54598aa8bb649e15 Signed-off-by: garciadeblas --- diff --git a/Dockerfile b/Dockerfile index 1e94793..c30bf91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ FROM ubuntu:16.04 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get -y install git make wget python python-pip debhelper tox && \ - DEBIAN_FRONTEND=noninteractive pip install -U pip && \ + DEBIAN_FRONTEND=noninteractive pip install pip==9.0.3 && \ DEBIAN_FRONTEND=noninteractive pip install -U pyang pyangbind && \ DEBIAN_FRONTEND=noninteractive pip install -U stdeb