]> git.immae.eu Git - github/fretlink/docker-ansible.git/blame - debian7-onbuild/Dockerfile
Add: rsync for some Alpine images to make it convenient for "synchronize" module.
[github/fretlink/docker-ansible.git] / debian7-onbuild / Dockerfile
CommitLineData
ebfd2bf2
WY
1# Dockerfile for building Ansible image for Debian 7 (wheezy), with as few additional software as possible.
2#
3# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible
4#
5# Version 1.0
6#
7
8
9# pull base image
10FROM debian:wheezy
11
12MAINTAINER William Yeh <william.pjyeh@gmail.com>
13
14
15RUN echo "===> Installing python, sudo, and supporting tools..." && \
97d48efe 16 apt-get update -y && apt-get install --fix-missing && \
ebfd2bf2
WY
17 DEBIAN_FRONTEND=noninteractive \
18 apt-get install -y \
19 python python-yaml sudo \
97d48efe
WY
20 curl gcc python-pip python-dev libffi-dev libssl-dev && \
21 pip install --upgrade cffi && \
ebfd2bf2
WY
22 \
23 \
24 echo "===> Installing Ansible..." && \
25 pip install ansible && \
26 \
27 \
ffe10e81 28 echo "===> Removing unused APT resources..." && \
97d48efe
WY
29 apt-get -f -y --auto-remove remove \
30 gcc python-pip python-dev libffi-dev libssl-dev && \
ffe10e81
WY
31 apt-get clean && \
32 rm -rf /var/lib/apt/lists/* /tmp/* && \
ebfd2bf2
WY
33 \
34 \
35 echo "===> Adding hosts for convenience..." && \
36 mkdir -p /etc/ansible && \
7b2618d5 37 echo 'localhost' > /etc/ansible/hosts
ebfd2bf2
WY
38
39
40COPY ansible-playbook-wrapper /usr/local/bin/
41
16ed448a
WY
42ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
43 echo "===> Updating TLS certificates..." && \
44 apt-get install -y openssl ca-certificates
45
46ONBUILD WORKDIR /tmp
ebfd2bf2 47ONBUILD COPY . /tmp
d5790ee4
WY
48ONBUILD RUN \
49 echo "===> Diagnosis: host information..." && \
50 ansible -c local -m setup all
ebfd2bf2
WY
51
52
53
54# default command: display Ansible version
55CMD [ "ansible-playbook", "--version" ]