aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-02-28 11:51:16 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-02-28 15:23:07 +0100
commit76097ed108f7ac2ff8ecd69f3174bb086e0fe939 (patch)
tree4b641e2314dc7b1759d6794bd0bac43d8cc50af5 /docker
parent0d96b05b0a8d21ce90fc7a7e1768a87fa0e3260f (diff)
Publish Dockerfile and samples
Change-Id: Ie776fea631f04bb42d8ae80bc658318d8644d0e5 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100644
index 00000000..32e38778
--- /dev/null
+++ b/docker/Dockerfile
@@ -0,0 +1,17 @@
+FROM alpine:3.7
+
+ARG BRANCH=master
+ARG OPENSTACK_TAG=stable/pike
+
+RUN apk --no-cache add --update \
+ python libffi libssl1.0 libjpeg-turbo py-pip bash \
+ grep sed wget ca-certificates git && \
+ git clone https://gerrit.opnfv.org/gerrit/functest-xtesting /src/functest-xtesting && \
+ (cd /src/functest-xtesting && git fetch origin $BRANCH && git checkout FETCH_HEAD) && \
+ 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-xtesting/plain/upper-constraints.txt?h=$BRANCH \
+ /src/functest-xtesting && \
+ rm -r /src/functest-xtesting && \
+ bash -c "mkdir -p /home/opnfv/xtesting/results/robot"
+CMD ["run_tests", "-t", "all"]