diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2017-01-08 21:00:27 -0500 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2017-01-08 21:02:15 -0500 |
commit | 0dfe2bb8599c442cdfc71ec72c0583f9d87d7e3f (patch) | |
tree | 7d813e4046891e4652b8dc02711b8f8f6770133d /docker | |
parent | 0df018d111bdf817dfb838454caac85236b643da (diff) |
dovetail tool: bugfix of pbr installation in requirements.txt and Dockerfile
JIRA: DOVETAIL-175
Change-Id: I1f16742a59d5b016dcef6b574df45486c244c751
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 2e919ee2..038993bc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,8 @@ RUN \ && \ apt-get update && apt-get -y install docker.io \ && \ - pip install pyyaml \ + pip install pbr \ + pyyaml \ click \ jinja2 |