diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2017-01-05 02:02:13 -0500 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2017-01-13 03:56:42 -0500 |
commit | 60f1f328b2ebc94330dcbf5f4374684a410d3e92 (patch) | |
tree | 6ecfa056092718997d82651c14bf3f91b1f64490 /docker/Dockerfile | |
parent | 0c57358d86d0a1d155b66e3af015be5be7e80e79 (diff) |
dovetail tool: command line
JIRA: DOVETAIL-173
details please see https://wiki.opnfv.org/display/dovetail/Dovetail+Command+Line
Change-Id: Iff04b0df8c4e6310d35a45b9c8ba3c7b3b5e1105
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 038993bc..187fbc9e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -18,7 +18,8 @@ RUN \ pip install pbr \ pyyaml \ click \ - jinja2 + jinja2 \ + six ENV HOME /home/opnfv ENV REPOS_DIR ${HOME}/dovetail @@ -29,6 +30,10 @@ RUN \ && \ git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/dovetail.git ${REPOS_DIR} \ && \ - mkdir -p ${REPOS_DIR}/results + mkdir -p ${REPOS_DIR}/results \ +&& \ + cd ${REPOS_DIR} \ +&& \ + pip install . WORKDIR ${REPOS_DIR}/dovetail |