diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-07-06 21:38:38 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-07-06 23:41:06 +0200 |
commit | f2353484ddcca794d2c86d3dbe4d026ac906643f (patch) | |
tree | dcc7226c488faa1acccf51a4672cb9eab78573bf /docker/Dockerfile.aarch64 | |
parent | d24a8f4bba627004ac4fcc27a8c85169c76cbb78 (diff) |
Stop using tempest version in Dockerfile
The sed instruction is enhanced to automatically copy the version
written in the OpenStack's upper-constraints.txt.
Change-Id: Icbfde6fb097b1eaf880184c4f63de11854bfdb47
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/Dockerfile.aarch64')
-rw-r--r-- | docker/Dockerfile.aarch64 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile.aarch64 b/docker/Dockerfile.aarch64 index a043628d3..a42fc3160 100644 --- a/docker/Dockerfile.aarch64 +++ b/docker/Dockerfile.aarch64 @@ -73,7 +73,7 @@ RUN git config --global http.sslVerify false COPY thirdparty-requirements.txt thirdparty-requirements.txt RUN wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata | \ - sed s/^tempest===.*$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@14.0.0#egg=tempest/ \ + sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \ > upper-constraints.txt && \ pip install --src /src -cupper-constraints.txt \ git+https://gerrit.opnfv.org/gerrit/functest@$BRANCH#egg=functest \ |