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:35:43 +0200 |
commit | ba0478fb5497dc389aaf8742f8b7a4f03a8f866e (patch) | |
tree | 71550e14fea82fbeefc0b377aaeebd378dcb1032 /docker/core/Dockerfile | |
parent | 3f8d791535f7306b05c47415fa7809e73f6d93e9 (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/Dockerfile')
-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 e85e621d4..cfb503e59 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -2,7 +2,6 @@ FROM alpine:3.9 ARG BRANCH=stable/iruya ARG OPENSTACK_TAG=stable/stein -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 && \ |