diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2017-03-23 03:34:27 -0400 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2017-03-23 03:36:44 -0400 |
commit | c731b93e24dca7641b174ee860f14beedc4de442 (patch) | |
tree | 8a8d2eaf1bce14a9119fa8c560514a9d232c8139 /docker | |
parent | 9d86d3b50a9617b6042cc8bf3f900c9b0573d888 (diff) |
bugfix of package error
JIRA: DOVETAIL-376
Change-Id: I91e0efff01d445e3f74718d730c8ff48c6413b26
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 68579e7f..e4013685 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,9 +6,12 @@ RUN \ apt-get update \ && \ apt-get install -y \ - python-pip \ + gcc \ git \ vim \ + python-dev \ + python-mock \ + python-pip \ apt-transport-https \ --no-install-recommends \ && \ @@ -27,6 +30,8 @@ RUN \ && \ pip install -U pip \ && \ + pip install -U pytz \ +&& \ pip install -r ${REPOS_DIR}/requirements.txt \ && \ cd ${REPOS_DIR} \ |