54241875e25a36d52a2ece740ac2808c5a3bd78b
[functest.git] / docker / vnf / Dockerfile
1 FROM opnfv/functest-core
2
3 ARG BRANCH=master
4 ARG OPENSTACK_TAG=stable/queens
5 ARG VIMS_TEST_TAG=stable
6 ARG VIMS_TAG=fraser
7 ARG VROUTER_TAG=fraser
8 ARG JUJU_TAG=tags/juju-2.2.5
9
10 ENV GOPATH /src/epc-requirements/go
11 ENV GOBIN /src/epc-requirements/go/bin
12 ENV PATH $GOBIN:$PATH
13
14 RUN apk --no-cache add --update \
15         ruby ruby-bundler ruby-irb ruby-rdoc dnsmasq \
16         procps libxslt libxml2 zlib libffi python3 go musl-dev && \
17     apk --no-cache add --virtual .build-deps --update \
18         ruby-dev g++ make libxslt-dev libxml2-dev zlib-dev libffi-dev && \
19     wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \
20         sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ | \
21         > upper-constraints.txt && \
22     git clone --depth 1 -b $VIMS_TEST_TAG https://github.com/boucherv-orange/clearwater-live-test.git /src/vims-test && \
23     git clone --depth 1 -b $VIMS_TAG https://github.com/Orange-OpenSource/opnfv-cloudify-clearwater.git /src/vims && \
24     git clone --depth 1 -b $VROUTER_TAG https://github.com/oolorg/opnfv-vnf-vyos-blueprint.git /src/opnfv-vnf-vyos-blueprint && \
25     git clone https://github.com/RebacaInc/abot_charm.git /src/epc-requirements/abot_charm && \
26     python3 -m pip install --no-cache-dir --src /src -cupper-constraints.txt \
27         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \
28         juju-wait && \
29     go get github.com/rogpeppe/godeps && \
30     go get -d -v github.com/juju/juju/... || true && \
31     (cd $GOPATH/src/github.com/juju/juju && git checkout $JUJU_TAG && godeps -u dependencies.tsv) && \
32     go install -v github.com/juju/juju/... && \
33     rm -rf $GOPATH/go/src/ $GOPATH/pkg && \
34     (cd /src/vims-test && bundle config build.nokogiri --use-system-libraries && bundle install --system) && \
35     rm -r upper-constraints.txt /src/vims-test/.git /src/vims/.git /src/opnfv-vnf-vyos-blueprint/.git \
36         /src/epc-requirements/abot_charm/.git && \
37     apk del .build-deps
38 COPY testcases.yaml /usr/lib/python2.7/site-packages/xtesting/ci/testcases.yaml
39 CMD ["run_tests", "-t", "all"]