diff options
author | rexlee8776 <limingjiang@huawei.com> | 2019-04-15 06:41:19 +0000 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2019-04-15 06:41:19 +0000 |
commit | e6d688c6585e976010dc9c5b3a051613171a8ddc (patch) | |
tree | f407b75ba130fa60623d3c989ca569e6a7731391 /docker/Dockerfile | |
parent | 441c147b14aae5ed6181d024b6f9ff370d9286c3 (diff) |
[bugfix] docker build failed in hunter due to storperf version
storperf do not have hunter branch, so it need to be set
as stable/gambia
JIRA: YARDSTICK-1610
Change-Id: I818396c46ce165019159b9852abb02f176507ac0
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 29319e056..31f7d5dfc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -38,7 +38,7 @@ RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/yardstick ${Y #RUN mkdir ${YARDSTICK_REPO_DIR} #COPY ./ ${YARDSTICK_REPO_DIR} RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} -RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/storperf ${STORPERF_REPO_DIR} +RUN git clone --depth 1 -b stable/gambia https://gerrit.opnfv.org/gerrit/storperf ${STORPERF_REPO_DIR} RUN ansible-playbook -i ${YARDSTICK_REPO_DIR}/ansible/install-inventory.ini -c local -vvv -e INSTALLATION_MODE="container" ${YARDSTICK_REPO_DIR}/ansible/install.yaml |