diff options
author | yuyang <Gabriel.yuyang@huawei.com> | 2016-12-19 21:52:50 +0800 |
---|---|---|
committer | yuyang <Gabriel.yuyang@huawei.com> | 2016-12-19 21:52:50 +0800 |
commit | f167a9ebbc5a2a76e7cefe6152c2ba689d6b08e2 (patch) | |
tree | 50063ee8756b03bb96acf5b84cfa39e4d5c1fc2e /docker/Dockerfile | |
parent | e99232301f35c436340598d126e2a1e62a3f4757 (diff) |
bugfix: correct typo in Dockerfile
JIRA: BOTTLENECK-108
Typo in Dockerfile that causing $BRANCH var not effective
Change-Id: I1f156e5b554ebd6f9a1b2d689b1c23c783a4e8af
Signed-off-by: yuyang <Gabriel.yuyang@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 a358cfb7..7e7793ee 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -45,7 +45,7 @@ RUN apt-get -y autoremove && \ RUN mkdir -p ${REPOS_DIR} RUN git config --global http.sslVerify false -RUN git -b $BRANCH clone https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} +RUN git clone -b $BRANCH https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} RUN easy_install pytz |