diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-09-04 12:49:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-04 12:49:07 +0000 |
commit | 58e45d4c8d40c767f308b29d78255a4364ee50da (patch) | |
tree | 47f61ba05de3edae165ca2e0c4075534d1f2dbf4 | |
parent | f11fb566d2f2289e2fdac88dabfd8f6e193d0353 (diff) | |
parent | ee12ace8b954f6232ed9cfc41364fb9420d678db (diff) |
Merge "Allow building Alpine containers from any gerrit changes"
-rw-r--r-- | docker/core/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 172dbb9f..0ab809aa 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -13,6 +13,9 @@ RUN apk --no-cache add --update \ wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \ sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \ > upper-constraints.txt && \ + pip install -U --no-cache-dir -cupper-constraints.txt \ + -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \ + git+https://github.com/pypa/pip.git && \ pip install --no-cache-dir --src /src -cupper-constraints.txt \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \ -e git+https://github.com/openstack/requirements@stable/ocata#egg=openstack_requirements && \ |