diff options
author | William Yeh <william.pjyeh@gmail.com> | 2017-09-14 15:57:43 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2017-09-14 17:56:59 +0800 |
commit | deeab1a101da6710574174dbe47199f9e8900b93 (patch) | |
tree | 95605a54ab972f9b821267be534103803fb84f2a /debian9-onbuild/Dockerfile | |
parent | 57d366d79328ee5d127d05644b108bd4f7915cdc (diff) | |
download | docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.tar.gz docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.tar.zst docker-ansible-deeab1a101da6710574174dbe47199f9e8900b93.zip |
Add: Debian 9 ("Stretch") support.
Diffstat (limited to 'debian9-onbuild/Dockerfile')
-rw-r--r-- | debian9-onbuild/Dockerfile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/debian9-onbuild/Dockerfile b/debian9-onbuild/Dockerfile new file mode 100644 index 0000000..079ebd9 --- /dev/null +++ b/debian9-onbuild/Dockerfile | |||
@@ -0,0 +1,56 @@ | |||
1 | # Dockerfile for building Ansible image for Debian 9 (stretch), 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:stretch | ||
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 | apt-get -y --purge remove python-cffi && \ | ||
22 | pip install --upgrade cffi && \ | ||
23 | \ | ||
24 | \ | ||
25 | echo "===> Installing Ansible..." && \ | ||
26 | pip install ansible && \ | ||
27 | \ | ||
28 | \ | ||
29 | echo "===> Removing unused APT resources..." && \ | ||
30 | apt-get -f -y --auto-remove remove \ | ||
31 | gcc python-pip python-dev libffi-dev libssl-dev && \ | ||
32 | apt-get clean && \ | ||
33 | rm -rf /var/lib/apt/lists/* /tmp/* && \ | ||
34 | \ | ||
35 | \ | ||
36 | echo "===> Adding hosts for convenience..." && \ | ||
37 | mkdir -p /etc/ansible && \ | ||
38 | echo 'localhost' > /etc/ansible/hosts | ||
39 | |||
40 | |||
41 | COPY ansible-playbook-wrapper /usr/local/bin/ | ||
42 | |||
43 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
44 | echo "===> Updating TLS certificates..." && \ | ||
45 | apt-get install -y openssl ca-certificates | ||
46 | |||
47 | ONBUILD WORKDIR /tmp | ||
48 | ONBUILD COPY . /tmp | ||
49 | ONBUILD RUN \ | ||
50 | echo "===> Diagnosis: host information..." && \ | ||
51 | ansible -c local -m setup all | ||
52 | |||
53 | |||
54 | |||
55 | # default command: display Ansible version | ||
56 | CMD [ "ansible-playbook", "--version" ] | ||