diff options
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} \ |