aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-12-27 19:55:27 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-12-27 19:55:27 +0100
commit568b72f402f97c8c40336da84827ce1568c45fc1 (patch)
tree332cb0c561cdf2fe3a05923e37814dd03ab3b968
parentc74710be00805d8f43059e5b752af0098767e701 (diff)
Add build dependencies
New OpenStack upper-constraints require build deps. Change-Id: Ib0318badfb13f528c20f4e01afdeaba36f442f9c Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--docker/core/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index 2b68d0e1..5b88a577 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -5,6 +5,8 @@ ARG OPENSTACK_TAG=master
ARG OPNFV_TAG=master
RUN apk --no-cache add --update python py-pip bash git grep && \
+ apk --no-cache add --virtual .build-deps --update \
+ python-dev build-base && \
git init /src/functest-kubernetes && \
(cd /src/functest-kubernetes && \
git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \
@@ -15,6 +17,7 @@ RUN apk --no-cache add --update python py-pip bash git grep && \
/src/functest-kubernetes && \
rm -rf /src/functest-kubernetes && \
bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \
- ln -s /var/lib/xtesting /home/opnfv/functest
+ ln -s /var/lib/xtesting /home/opnfv/functest && \
+ apk del .build-deps
COPY logging.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.ini
CMD ["run_tests", "-t", "all"]