Merge "Plugins install: use setup.py"

This commit is contained in:
Jenkins 2015-05-12 18:54:39 +00:00 committed by Gerrit Code Review
commit 0aeab5a876

View File

@ -46,10 +46,10 @@ RUN apt-get update && apt-get install -y subversion && \
RUN pip install shinkenplugins python-keystoneclient python-glanceclient
## Install Plugins
RUN cd /plugins/check_glance && sudo pip install .
RUN cd /plugins/check_keystone && sudo pip install .
RUN cd /plugins/check_nova && sudo pip install .
RUN cd /plugins/check_cinder && sudo pip install .
RUN cd /plugins/check_glance && sudo python setup.py install
RUN cd /plugins/check_keystone && sudo python setup.py install
RUN cd /plugins/check_nova && sudo python setup.py install
RUN cd /plugins/check_cinder && sudo python setup.py install
## packs
RUN sh -c 'gpg --recv-keys --keyserver keyserver.ubuntu.com 2320E8F8 && gpg --export --armor 2320E8F8 | apt-key add -' && \