blob: f9d79aeb4c4350694d6b83d026fd30d2754aa067 [file] [log] [blame]
David K. Bainbridge9c24cbf2015-12-03 11:49:01 -08001FROM xosproject/xos
Tony Mack3bcbee82015-11-16 20:41:49 +00002
3# Install custom Ansible
4RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
5 openssh-client \
6 python-crypto \
7 python-jinja2 \
8 python-paramiko \
9 python-yaml \
10 python-httplib2 \
11 supervisor
12
13RUN \
14 git clone -b release1.8.2 git://github.com/ansible/ansible.git /opt/ansible && \
15 git clone -b release1.8.2 git://github.com/ansible/ansible-modules-extras.git /opt/ansible/lib/ansible/modules/extras && \
16 git clone -b release1.8.2 git://github.com/ansible/ansible-modules-extras.git /opt/ansible/v2/ansible/modules/extras && \
17 git clone git://github.com/sb98052/ansible-modules-core.git /opt/ansible/lib/ansible/modules/core && \
18 git clone git://github.com/sb98052/ansible-modules-core.git /opt/ansible/v2/ansible/modules/core && \
19 # git clone uses cached copy, doesn't pick up latest
20 git -C /opt/ansible pull && \
21 git -C /opt/ansible/lib/ansible/modules/core pull && \
22 git -C /opt/ansible/v2/ansible/modules/core pull
23
24
25# For Observer
26RUN mkdir -p /usr/local/share /bin /etc/ansible
27
Tony Mackae85c522015-11-16 20:45:39 +000028RUN cp /tmp/xos/containers/synchronizer/conf/ansible-hosts /etc/ansible/hosts
Tony Mack3bcbee82015-11-16 20:41:49 +000029
30ADD http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-x86_64.tar.bz2 /usr/local/share/
31
32RUN git clone git://git.planet-lab.org/fofum.git /tmp/fofum && \
33 cd /tmp/fofum; python setup.py install && \
34 rm -rf /tmp/fofum && \
35 tar jxvf /usr/local/share/phantomjs-1.7.0-linux-x86_64.tar.bz2 -C /usr/local/share/ && \
36 rm -f /usr/local/share/phantomjs-1.7.0-linux-x86_64.tar.bz2 && \
37 ln -s /usr/local/share/phantomjs-1.7.0-linux-x86_64 /usr/local/share/phantomjs && \
38 ln -s /usr/local/share/phantomjs/bin/phantomjs /bin/phantomjs
39
40
41# Supervisor
Tony Mackae85c522015-11-16 20:45:39 +000042RUN cp /tmp/xos/containers/synchronizer/conf/synchronizer.conf /etc/supervisor/conf.d/
Tony Mack3bcbee82015-11-16 20:41:49 +000043
Tony Mackae85c522015-11-16 20:45:39 +000044CMD /usr/bin/supervisord -c /etc/supervisor/conf.d/synchronizer.conf