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