diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-19 23:07:30 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-04-19 23:07:30 +0200 |
commit | 9f00eed3e6da26482e4f2d687a10bb631201a7ca (patch) | |
tree | 5103367b269d49fb9b866ebfa0edb82d6c582754 | |
parent | 18b3dbc1c3e9bc744507248b1f0a28f35652fc35 (diff) |
Take the new Abot charm branch into account
Change-Id: I0cc1ea6b9bed335b4f0cc740f37fe399dc89146b
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r-- | docker/vnf/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docker/vnf/Dockerfile b/docker/vnf/Dockerfile index 188e33f6c..06117419d 100644 --- a/docker/vnf/Dockerfile +++ b/docker/vnf/Dockerfile @@ -4,6 +4,7 @@ ARG BRANCH=stable/fraser ARG OPENSTACK_TAG=stable/pike ARG VIMS_TAG=stable ARG JUJU_TAG=tags/juju-2.2.5 +ARG ABOT_TAG=opnfv-fraser ENV GOPATH /src/epc-requirements/go ENV GOBIN /src/epc-requirements/go/bin @@ -19,6 +20,7 @@ RUN apk --no-cache add --update \ > upper-constraints.txt && \ git clone --depth 1 -b $VIMS_TAG https://github.com/boucherv-orange/clearwater-live-test /src/vims-test && \ git clone https://github.com/RebacaInc/abot_charm.git /src/epc-requirements/abot_charm && \ + (cd /src/epc-requirements/abot_charm && git checkout $ABOT_TAG) && \ python3 -m pip install --no-cache-dir --src /src -cupper-constraints.txt \ -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH \ juju-wait && \ |