diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-05-27 20:47:48 +0200 |
---|---|---|
committer | Cédric Ollivier <ollivier.cedric@gmail.com> | 2019-05-28 10:38:06 +0200 |
commit | bcfc6d6cde658a6171d6bcb62fdcd15abd05e9a4 (patch) | |
tree | e20fbeaf95e0565320180e0fd623391ea5ec4db7 /docker/core | |
parent | c2d099a42b06d39d67da5eea6449a46de1989c5f (diff) |
Stop downgrading pip
The pip package poposed by Alpine is fine.
Change-Id: I415757b8f4028c76e9d8cec4895306d843d42ac2
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 5819ff6a14e7e89b6c7004336bfcabed9f16baa4)
Diffstat (limited to 'docker/core')
-rw-r--r-- | docker/core/Dockerfile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 963e01b5f..86da11d84 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -2,7 +2,6 @@ FROM alpine:3.9 ARG BRANCH=stable/hunter ARG OPENSTACK_TAG=stable/rocky -ARG PIP_TAG=18.0 RUN apk --no-cache add --update \ python libffi openssl libjpeg-turbo py-pip bash \ @@ -15,8 +14,6 @@ RUN apk --no-cache add --update \ wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt && \ sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \ pip install --no-cache-dir --src /src -cupper-constraints.opnfv.txt -cupper-constraints.txt \ - pip==$PIP_TAG && \ - pip install --no-cache-dir --src /src -cupper-constraints.opnfv.txt -cupper-constraints.txt \ -e git+https://opendev.org/openstack/requirements@$OPENSTACK_TAG#egg=openstack_requirements && \ git init /src/functest && \ (cd /src/functest && \ |