]> git.immae.eu Git - github/fretlink/docker-ansible.git/blame - 1.9-debian7/Dockerfile
Add: `git` for onbuild variants; handy tools for others.
[github/fretlink/docker-ansible.git] / 1.9-debian7 / Dockerfile
CommitLineData
14e54a03
WY
1# Dockerfile for building Ansible 1.9 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 && \
14e54a03
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 && \
14e54a03
WY
22 \
23 \
24 echo "===> Installing Ansible..." && \
25 pip install ansible==1.9.4 && \
26 \
27 \
b1f3718d
WY
28 echo "===> Installing handy tools (not absolutely required)..." && \
29 apt-get install -y sshpass openssh-client && \
30 \
31 \
14e54a03 32 echo "===> Removing unused APT resources..." && \
97d48efe
WY
33 apt-get -f -y --auto-remove remove \
34 gcc python-pip python-dev libffi-dev libssl-dev && \
14e54a03
WY
35 apt-get clean && \
36 rm -rf /var/lib/apt/lists/* /tmp/* && \
37 \
38 \
39 echo "===> Adding hosts for convenience..." && \
40 mkdir -p /etc/ansible && \
41 echo 'localhost' > /etc/ansible/hosts
42
43
44# default command: display Ansible version
45CMD [ "ansible-playbook", "--version" ]