diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2016-04-14 05:51:19 -0400 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2016-04-14 05:51:19 -0400 |
commit | fcdd99acc0a2bac7da6ba961c58b7a3669e8d2b9 (patch) | |
tree | 4ad8603ff9e3815144b5554dc3506f9c89647f9f /ci/docker/Dockerfile | |
parent | 438bb0ede748a7c074f55e31fe64a0200073bef1 (diff) |
pip install openstack clients
JIRA: BOTTLENECK-48
Change-Id: I863ce174f3c9e75a6c15325cacb6e1b1ab72d591
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'ci/docker/Dockerfile')
-rw-r--r-- | ci/docker/Dockerfile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ci/docker/Dockerfile b/ci/docker/Dockerfile index 70d0be0a..706718c2 100644 --- a/ci/docker/Dockerfile +++ b/ci/docker/Dockerfile @@ -26,11 +26,8 @@ RUN apt-get update && apt-get install -y \ git \ sshpass \ python \ - python-glanceclient \ - python-heatclient \ - python-keystoneclient \ - python-neutronclient \ - python-novaclient + python-dev \ + python-pip RUN apt-get -y autoremove && \ apt-get clean @@ -41,4 +38,4 @@ RUN git config --global http.sslVerify false RUN git clone https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENECKS_REPO_DIR} RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} -#COPY ./run_tests.sh /usr/local/bin/ +RUN pip install -r ${REPOS_DIR}/bottlenecks/requirements.txt |