aboutsummaryrefslogtreecommitdiffstats
path: root/docker/features/Dockerfile
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-08-10 08:57:34 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-10 08:57:34 +0000
commit574da71290f97d7c75cfbcb86d7134903086d91f (patch)
tree274145ce4758ac488fd9d99af58ecfbe7f074113 /docker/features/Dockerfile
parenta91f8ca024935ad516237845fa4d83412b232b26 (diff)
parent9e1e91caba0f9c3a2b5c6874ea0277c86e756806 (diff)
Merge "Add functest-features based on Alpine"
Diffstat (limited to 'docker/features/Dockerfile')
-rw-r--r--docker/features/Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile
new file mode 100644
index 00000000..3c52b5da
--- /dev/null
+++ b/docker/features/Dockerfile
@@ -0,0 +1,17 @@
+FROM opnfv/functest-core
+
+ARG BRANCH=master
+ARG OPENSTACK_TAG=stable/ocata
+
+COPY thirdparty-requirements.txt thirdparty-requirements.txt
+RUN apk --no-cache add --virtual .build-deps --update \
+ python-dev build-base linux-headers libffi-dev \
+ openssl-dev libjpeg-turbo-dev git && \
+ pip install --no-cache-dir --src /src \
+ -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \
+ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
+ -rthirdparty-requirements.txt && \
+ rm -r thirdparty-requirements.txt && \
+ apk del .build-deps
+COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml
+CMD ["bash","-c","prepare_env start && run_tests -t all"]