aboutsummaryrefslogtreecommitdiffhomepage
path: root/1.9-debian8
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2016-03-08 12:10:00 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2016-03-08 12:10:00 +0800
commit14e54a03841a837231975247f70f063527a6f7b6 (patch)
tree3d8630603043c541b5637c8164ce5c573c27d7b6 /1.9-debian8
parent7b2618d5a775fd669a36076e6f8d2380aa73af69 (diff)
downloaddocker-ansible-14e54a03841a837231975247f70f063527a6f7b6.tar.gz
docker-ansible-14e54a03841a837231975247f70f063527a6f7b6.tar.zst
docker-ansible-14e54a03841a837231975247f70f063527a6f7b6.zip
Add: Ansible 1.9 series.
Diffstat (limited to '1.9-debian8')
-rw-r--r--1.9-debian8/Dockerfile39
1 files changed, 39 insertions, 0 deletions
diff --git a/1.9-debian8/Dockerfile b/1.9-debian8/Dockerfile
new file mode 100644
index 0000000..47d59e1
--- /dev/null
+++ b/1.9-debian8/Dockerfile
@@ -0,0 +1,39 @@
1# Dockerfile for building Ansible 1.9 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..." && \
16 apt-get update && \
17 DEBIAN_FRONTEND=noninteractive \
18 apt-get install -y \
19 python python-yaml sudo \
20 curl gcc python-pip python-dev && \
21 \
22 \
23 echo "===> Installing Ansible..." && \
24 pip install ansible==1.9.4 && \
25 \
26 \
27 echo "===> Removing unused APT resources..." && \
28 apt-get -f -y --auto-remove remove gcc python-pip python-dev && \
29 apt-get clean && \
30 rm -rf /var/lib/apt/lists/* /tmp/* && \
31 \
32 \
33 echo "===> Adding hosts for convenience..." && \
34 mkdir -p /etc/ansible && \
35 echo 'localhost' > /etc/ansible/hosts
36
37
38# default command: display Ansible version
39CMD [ "ansible-playbook", "--version" ]