blob: 187168c7c7e3a488114cafe9f760c5f877e25f0b [file] [log] [blame]
David K. Bainbridgeab4a2eb2015-12-03 11:49:01 -08001FROM xosproject/xos
Tony Mack4eecc052015-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
Tony Mack12963cf2015-12-16 17:40:00 +000013RUN pip install -U \
14 jinja2
15
Tony Mack4eecc052015-11-16 20:41:49 +000016RUN \
17 git clone -b release1.8.2 git://github.com/ansible/ansible.git /opt/ansible && \
18 git clone -b release1.8.2 git://github.com/ansible/ansible-modules-extras.git /opt/ansible/lib/ansible/modules/extras && \
19 git clone -b release1.8.2 git://github.com/ansible/ansible-modules-extras.git /opt/ansible/v2/ansible/modules/extras && \
20 git clone git://github.com/sb98052/ansible-modules-core.git /opt/ansible/lib/ansible/modules/core && \
21 git clone git://github.com/sb98052/ansible-modules-core.git /opt/ansible/v2/ansible/modules/core && \
22 # git clone uses cached copy, doesn't pick up latest
23 git -C /opt/ansible pull && \
24 git -C /opt/ansible/lib/ansible/modules/core pull && \
25 git -C /opt/ansible/v2/ansible/modules/core pull
26
27
28# For Observer
29RUN mkdir -p /usr/local/share /bin /etc/ansible
30
Andy Bavierbeef3fb2016-01-06 16:40:00 -050031COPY conf/ansible-hosts /etc/ansible/hosts
Tony Mack4eecc052015-11-16 20:41:49 +000032
33ADD http://phantomjs.googlecode.com/files/phantomjs-1.7.0-linux-x86_64.tar.bz2 /usr/local/share/
34
35RUN git clone git://git.planet-lab.org/fofum.git /tmp/fofum && \
36 cd /tmp/fofum; python setup.py install && \
37 rm -rf /tmp/fofum && \
38 tar jxvf /usr/local/share/phantomjs-1.7.0-linux-x86_64.tar.bz2 -C /usr/local/share/ && \
39 rm -f /usr/local/share/phantomjs-1.7.0-linux-x86_64.tar.bz2 && \
40 ln -s /usr/local/share/phantomjs-1.7.0-linux-x86_64 /usr/local/share/phantomjs && \
41 ln -s /usr/local/share/phantomjs/bin/phantomjs /bin/phantomjs
42
43
44# Supervisor
Andy Bavierbeef3fb2016-01-06 16:40:00 -050045COPY conf/synchronizer.conf /etc/supervisor/conf.d/
Tony Mack4eecc052015-11-16 20:41:49 +000046
Tony Mack12963cf2015-12-16 17:40:00 +000047CMD update-ca-certificates && /usr/bin/supervisord -c /etc/supervisor/conf.d/synchronizer.conf