diff options
Diffstat (limited to 'debian7/Dockerfile')
-rw-r--r-- | debian7/Dockerfile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/debian7/Dockerfile b/debian7/Dockerfile new file mode 100644 index 0000000..72d3d31 --- /dev/null +++ b/debian7/Dockerfile | |||
@@ -0,0 +1,39 @@ | |||
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 && \ | ||
17 | DEBIAN_FRONTEND=noninteractive \ | ||
18 | apt-get install -y \ | ||
19 | python sudo \ | ||
20 | curl gcc python-pip python-dev && \ | ||
21 | \ | ||
22 | \ | ||
23 | echo "===> Installing Ansible..." && \ | ||
24 | pip install ansible && \ | ||
25 | \ | ||
26 | \ | ||
27 | echo "===> Removing unused APT resources..." && \ | ||
28 | apt-get -f -y --auto-remove remove curl gcc python-pip python-dev && \ | ||
29 | apt-get clean && \ | ||
30 | rm -rf /var/lib/apt/lists/* && \ | ||
31 | \ | ||
32 | \ | ||
33 | echo "===> Adding hosts for convenience..." && \ | ||
34 | mkdir -p /etc/ansible && \ | ||
35 | echo '[local]\nlocalhost\n' > /etc/ansible/hosts | ||
36 | |||
37 | |||
38 | # default command: display Ansible version | ||
39 | CMD [ "ansible-playbook", "--version" ] | ||