diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index e138c73dc..bc6d03936 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -83,10 +83,16 @@ RUN git clone https://gerrit.opnfv.org/gerrit/moon ${repos_dir}/moon RUN git clone https://gerrit.opnfv.org/gerrit/sdnvpn ${repos_dir}/sdnvpn RUN git clone https://github.com/openstack/kingbird.git ${repos_dir}/kingbird RUN git clone https://gerrit.opnfv.org/gerrit/domino ${repos_dir}/domino +RUN git clone https://gerrit.opnfv.org/gerrit/parser ${repos_dir}/parser RUN pip install -r ${repos_dir}/functest/docker/requirements.pip RUN pip install -r ${repos_dir}/rally/requirements.txt RUN pip install -r ${repos_dir}/tempest/requirements.txt +RUN pip install -r ${repos_dir}/parser/tosca2heat/tosca-parser/requirements.txt +RUN pip install -r ${repos_dir}/parser/tosca2heat/heat-translator/requirements.txt +RUN cd ${repos_dir}/parser/tosca2heat/tosca-parser && python setup.py install +RUN cd ${repos_dir}/parser/tosca2heat/heat-translator && python setup.py install + RUN ${repos_dir}/rally/install_rally.sh --yes |