aboutsummaryrefslogtreecommitdiffstats
path: root/docker/vnf/Dockerfile
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-08-20 10:22:08 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-20 10:22:08 +0000
commit58665932c2c910cedac2a135e5b84a5ec4b5946e (patch)
tree62a861109d5fbe834a838cc43c46bb5a400d6d9f /docker/vnf/Dockerfile
parentacb8d8cee379a5c6c40845c7414541095627e71b (diff)
parent517a1a238924e28164d28893cbbb4ac0fe6e2dcb (diff)
Merge "Integrate cloudify_ims in functest-features"
Diffstat (limited to 'docker/vnf/Dockerfile')
-rw-r--r--docker/vnf/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/docker/vnf/Dockerfile b/docker/vnf/Dockerfile
new file mode 100644
index 00000000..70c13ab2
--- /dev/null
+++ b/docker/vnf/Dockerfile
@@ -0,0 +1,12 @@
+FROM opnfv/functest-core
+
+ARG VIMS_TAG=stable
+
+RUN apk --no-cache add --update \
+ ruby ruby-dev ruby-bundler ruby-irb ruby-rdoc \
+ procps git g++ make libxslt-dev libxml2-dev zlib-dev libffi-dev && \
+ git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test /src/vims-test && \
+ rm -r /src/vims-test/.git && \
+ cd /src/vims-test && bundle config build.nokogiri --use-system-libraries && bundle install --system
+COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml
+CMD ["bash","-c","prepare_env start && run_tests -t all"]