summaryrefslogtreecommitdiffstats
path: root/docker/vnf/Dockerfile
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-09-14 07:52:03 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-14 07:52:03 +0000
commitc34e1ef3c7f5cb047fcbdb8f7f3d6ed2b832aa0c (patch)
treed819b8b866d70111de9a102575a29412c270be67 /docker/vnf/Dockerfile
parent42c99773c40f669b18c489a8f8b1c9bbb79d51d9 (diff)
parentbe8f2b0f79e42e595e6e45f17afc47e08acf23cc (diff)
Merge "Optimize Alpine Dockerfiles"
Diffstat (limited to 'docker/vnf/Dockerfile')
-rw-r--r--docker/vnf/Dockerfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/docker/vnf/Dockerfile b/docker/vnf/Dockerfile
index d4f18c476..36e80d7e2 100644
--- a/docker/vnf/Dockerfile
+++ b/docker/vnf/Dockerfile
@@ -3,10 +3,13 @@ FROM opnfv/functest-core
ARG VIMS_TAG=stable
RUN apk --no-cache add --update \
- ruby ruby-dev ruby-bundler ruby-irb ruby-rdoc dnsmasq \
- procps git g++ make libxslt-dev libxml2-dev zlib-dev libffi-dev && \
+ ruby ruby-bundler ruby-irb ruby-rdoc dnsmasq \
+ procps libxslt libxml2 zlib libffi && \
+ apk --no-cache add --virtual .build-deps --update \
+ ruby-dev 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
+ cd /src/vims-test && bundle config build.nokogiri --use-system-libraries && bundle install --system && \
+ 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"]