summaryrefslogtreecommitdiffstats
path: root/docker/smoke
diff options
context:
space:
mode:
authorLinda Wang <wangwulin@huawei.com>2017-11-07 06:31:20 +0000
committerLinda Wang <wangwulin@huawei.com>2017-11-07 06:38:04 +0000
commit9ca52cc93dbc869c214f47c38697e61adda03b8b (patch)
tree65515aad6241cdd83c2bc19f2b8ee8c9201c5413 /docker/smoke
parent5fe48568e50ad9a556cc4094ee05e76d9255a05d (diff)
Fix the format of getting upper-constraints
Change-Id: I8a769ec161b1a718ef259ae6b6615aec01e337ec Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'docker/smoke')
-rw-r--r--docker/smoke/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/smoke/Dockerfile b/docker/smoke/Dockerfile
index ae56a6c75..8350602ae 100644
--- a/docker/smoke/Dockerfile
+++ b/docker/smoke/Dockerfile
@@ -10,7 +10,7 @@ RUN apk --no-cache add --virtual .build-deps --update \
python-dev build-base linux-headers libffi-dev \
openssl-dev libjpeg-turbo-dev git && \
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) && \
#n190'>190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269