aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-03-28 19:10:16 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2020-03-28 19:10:16 +0100
commite6d51246d035b25416c8b3fcf297cce7cef7d611 (patch)
tree728a7f9cd70707bfcb1274881fb119709597750e
parent9b3554d60324dfb418ed554c100c6ce593006eb4 (diff)
pcre-dev is now needed
https://build.opnfv.org/ci/job/functest-smoke-docker-build-amd64-hunter/298/console Change-Id: Ia0d2ff72869e0ccf1b657532404f0000b77546e0 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--docker/smoke/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/smoke/Dockerfile b/docker/smoke/Dockerfile
index 0f71a624e..580da5d44 100644
--- a/docker/smoke/Dockerfile
+++ b/docker/smoke/Dockerfile
@@ -10,10 +10,10 @@ ARG CINDER_TEMPEST_TAG=0.2.0
ARG KEYSTONE_TEMPEST_TAG=0.1.0
ARG BARBICAN_TAG=0.1.0
-RUN apk --no-cache add --update libxml2 libxslt && \
+RUN apk --no-cache add --update libxml2 libxslt libpcre16 libpcre32 && \
apk --no-cache add --virtual .build-deps --update \
python-dev build-base linux-headers libffi-dev \
- openssl-dev libjpeg-turbo-dev libxml2-dev libxslt-dev && \
+ openssl-dev libjpeg-turbo-dev libxml2-dev libxslt-dev pcre-dev && \
wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \
sed -i -E s/^tempest==+.*$/-e\ git+https:\\/\\/opendev.org\\/openstack\\/tempest@$TEMPEST_TAG#egg=tempest/ upper-constraints.txt && \
case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt ;; esac && \