diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-11-07 06:31:20 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-11-07 06:38:04 +0000 |
commit | 9ca52cc93dbc869c214f47c38697e61adda03b8b (patch) | |
tree | 65515aad6241cdd83c2bc19f2b8ee8c9201c5413 /docker/restapi/Dockerfile | |
parent | 5fe48568e50ad9a556cc4094ee05e76d9255a05d (diff) |
Fix the format of getting upper-constraints
Change-Id: I8a769ec161b1a718ef259ae6b6615aec01e337ec
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'docker/restapi/Dockerfile')
-rw-r--r-- | docker/restapi/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/restapi/Dockerfile b/docker/restapi/Dockerfile index a74e8a88..f2810e19 100644 --- a/docker/restapi/Dockerfile +++ b/docker/restapi/Dockerfile @@ -16,7 +16,7 @@ RUN apk --no-cache add --update nodejs nodejs-npm python3 sshpass \ openssl-dev libjpeg-turbo-dev \ ruby-dev g++ make libxslt-dev libxml2-dev zlib-dev libffi-dev && \ 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/ | \ + sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \ > upper-constraints.txt && \ git clone https://github.com/openstack/refstack-client.git /src/refstack-client && \ (cd src/refstack-client && git checkout $REFSTACK_TAG) && \ |