Fixed dependencies issues

Change-Id: Iff0b9edc7350edcf97ee7bb91bf2e8a1a3a61cbb
This commit is contained in:
aviau 2015-05-29 09:36:41 -04:00
parent 08c51ead3c
commit 4cdf46c7f3
2 changed files with 3 additions and 2 deletions
Dockerfile
tools/docker/alignak_container

@ -35,7 +35,7 @@ ADD surveil /opt/surveil/surveil
ENV PBR_VERSION=PROD
# We are using develop so that the code can be mounted when in DEV.
RUN pip install -U six
RUN pip install -U six requests
RUN cd /opt/surveil && python setup.py develop
# Set to 'surveil' or 'keystone'

@ -88,11 +88,12 @@ RUN apt-get update && apt-get install -y subversion && \
apt-get remove -y subversion
## Install plugins dependencies
RUN pip install "pbr>=0.6,!=0.7,<1.0"
RUN pip install shinkenplugins python-keystoneclient python-glanceclient
## Install Plugins
RUN cd /plugins/check_glance && sudo python setup.py install
RUN cd /plugins/check_keystone && sudo python setup.py install
RUN cd /plugins/check_glance && 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
RUN cd /plugins/check_ceilometer && sudo python setup.py install