]> git.immae.eu Git - github/fretlink/docker-ansible.git/blob - debian7/Dockerfile
25cc25b46ab4978cd2864f2cdd03b4dec3af6055
[github/fretlink/docker-ansible.git] / debian7 / Dockerfile
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
10 FROM debian:wheezy
11
12 MAINTAINER William Yeh <william.pjyeh@gmail.com>
13
14
15 RUN echo "===> Installing python, sudo, and supporting tools..." && \
16 apt-get update -y && apt-get install --fix-missing && \
17 DEBIAN_FRONTEND=noninteractive \
18 apt-get install -y \
19 python python-yaml sudo \
20 curl gcc python-pip python-dev libffi-dev libssl-dev && \
21 pip install --upgrade cffi && \
22 \
23 \
24 echo "===> Installing Ansible..." && \
25 pip install ansible && \
26 \
27 \
28 echo "===> Removing unused APT resources..." && \
29 apt-get -f -y --auto-remove remove \
30 gcc python-pip python-dev libffi-dev libssl-dev && \
31 apt-get clean && \
32 rm -rf /var/lib/apt/lists/* /tmp/* && \
33 \
34 \
35 echo "===> Adding hosts for convenience..." && \
36 mkdir -p /etc/ansible && \
37 echo 'localhost' > /etc/ansible/hosts
38
39
40 # default command: display Ansible version
41 CMD [ "ansible-playbook", "--version" ]