diff options
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 187fbc9e..aea1e994 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -13,13 +13,7 @@ RUN \ apt-transport-https \ --no-install-recommends \ && \ - apt-get update && apt-get -y install docker.io \ -&& \ - pip install pbr \ - pyyaml \ - click \ - jinja2 \ - six + apt-get update && apt-get -y install docker.io ENV HOME /home/opnfv ENV REPOS_DIR ${HOME}/dovetail @@ -32,6 +26,10 @@ RUN \ && \ mkdir -p ${REPOS_DIR}/results \ && \ + pip install -U pip \ +&& \ + pip install -r ${REPOS_DIR}/requirements.txt \ +&& \ cd ${REPOS_DIR} \ && \ pip install . |