diff options
Diffstat (limited to '1.9-debian7')
-rw-r--r-- | 1.9-debian7/Dockerfile | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/1.9-debian7/Dockerfile b/1.9-debian7/Dockerfile deleted file mode 100644 index 7e7121e..0000000 --- a/1.9-debian7/Dockerfile +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
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 | ||
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==1.9.4 && \ | ||
26 | \ | ||
27 | \ | ||
28 | echo "===> Installing handy tools (not absolutely required)..." && \ | ||
29 | apt-get install -y sshpass openssh-client && \ | ||
30 | \ | ||
31 | \ | ||
32 | echo "===> Removing unused APT resources..." && \ | ||
33 | apt-get -f -y --auto-remove remove \ | ||
34 | gcc python-pip python-dev libffi-dev libssl-dev && \ | ||
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 | ||
45 | CMD [ "ansible-playbook", "--version" ] | ||