Added Surveil to Dockerfile

Change-Id: I00b735c27c4668ef57b878d83e83861c36043197
This commit is contained in:
aviau 2014-08-14 23:05:20 -04:00
parent cc2db687a0
commit a581406d79
2 changed files with 18 additions and 0 deletions

View File

@ -61,6 +61,21 @@ ADD tools/docker/etc/apache2/conf-enabled/influxdb.conf /etc/apache2/conf-enable
### Mongo
RUN apt-get install -y mongodb
### Surveil
## Copy files
ADD surveil /surveil/surveil
ADD setup.cfg /surveil/setup.cfg
ADD requirements.txt surveil/requirements.txt
ADD setup.py /surveil/setup.py
ADD .git /surveil/.git
ADD README.rst surveil/README.rst
## Install
RUN apt-get install -y python3-pip
RUN pip3 install -r /surveil/requirements.txt
RUN apt-get install -y git
RUN cd surveil && python3 setup.py install
### Supervisor
RUN apt-get -y install supervisor
ADD tools/docker/etc/supervisor /etc/supervisor

View File

@ -15,3 +15,6 @@ command=/bin/sh -c "service riemann start"
[program:mongodb]
command=/bin/sh -c "service mongodb start"
[program:surveil]
command=/bin/sh -c "pecan serve /usr/local/lib/python3.4/dist-packages/surveil/api/config.py"