blob: 958e9263d09f2456b619f779b394245103a57688 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Dockerfile for building Ansible image from source for Debian 7 (wheezy), with as few additional software as possible.
#
# @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source
#
# Version 1.0
#
# pull base image
FROM debian:wheezy
MAINTAINER William Yeh <william.pjyeh@gmail.com>
RUN echo "===> Adding Ansible's prerequisites..." && \
apt-get update -y && \
DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends -y -q \
build-essential ca-certificates \
python-pip python-dev python-yaml \
libxml2-dev libxslt1-dev zlib1g-dev \
git sudo curl && \
pip install --upgrade pyyaml jinja2 pycrypto && \
\
\
echo "===> Downloading Ansible's source tree..." && \
git clone git://github.com/ansible/ansible.git --recursive && \
\
\
echo "===> Compiling Ansible..." && \
cd ansible && \
bash -c 'source ./hacking/env-setup' && \
\
\
echo "===> Moving useful Ansible stuff to /opt/ansible ..." && \
mkdir -p /opt/ansible && \
mv /ansible/bin /opt/ansible/bin && \
mv /ansible/lib /opt/ansible/lib && \
mv /ansible/docs /opt/ansible/docs && \
rm -rf /ansible && \
\
\
echo "===> Clean up..." && \
apt-get remove -y --auto-remove \
build-essential python-pip python-dev git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
\
\
echo "===> Adding hosts for convenience..." && \
mkdir -p /etc/ansible && \
echo '[local]\nlocalhost\n' > /etc/ansible/hosts
ENV PATH /opt/ansible/bin:$PATH
ENV PYTHONPATH /opt/ansible/lib:$PYTHONPATH
ENV MANPATH /opt/ansible/docs/man:$MANPATH
COPY ansible-playbook-wrapper /usr/local/bin/
ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
echo "===> Updating TLS certificates..." && \
apt-get install -y openssl ca-certificates
ONBUILD WORKDIR /tmp
ONBUILD COPY . /tmp
ONBUILD RUN \
echo "===> Diagnosis: host information..." && \
ansible -c local -m setup all
# default command: display Ansible version
CMD [ "ansible-playbook", "--version" ]
|