summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile9
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