aboutsummaryrefslogtreecommitdiffhomepage
path: root/master-ubuntu16.04-onbuild
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2016-05-09 16:34:32 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2016-05-10 17:17:33 +0800
commit97d48efeb67f4f7566752625ad3ce233f31985be (patch)
tree20ce7984d99bf5f6b770fce81384790027723517 /master-ubuntu16.04-onbuild
parentb314855954aa117b1294056891d16f43a6b1b9d0 (diff)
downloaddocker-ansible-97d48efeb67f4f7566752625ad3ce233f31985be.tar.gz
docker-ansible-97d48efeb67f4f7566752625ad3ce233f31985be.tar.zst
docker-ansible-97d48efeb67f4f7566752625ad3ce233f31985be.zip
Add: support for Ubuntu 16.04 LTS (Xenial).
Fix: 1. OS-level packages `libffi-dev` and `libssl-dev`/`openssl-dev` should be installed explicitly since Ansible 2.0.2.0(???). 2. Python package cffi should be installed explicitly since Ansible 2.0.2.0(???). 3. add '--fix-missing' for apt. @see https://github.com/boxcutter/ubuntu/issues/62 @see https://github.com/pyca/cryptography/issues/2280
Diffstat (limited to 'master-ubuntu16.04-onbuild')
-rw-r--r--master-ubuntu16.04-onbuild/Dockerfile77
-rwxr-xr-xmaster-ubuntu16.04-onbuild/ansible-playbook-wrapper49
2 files changed, 126 insertions, 0 deletions
diff --git a/master-ubuntu16.04-onbuild/Dockerfile b/master-ubuntu16.04-onbuild/Dockerfile
new file mode 100644
index 0000000..bbd0029
--- /dev/null
+++ b/master-ubuntu16.04-onbuild/Dockerfile
@@ -0,0 +1,77 @@
1# Dockerfile for building Ansible image from source for Ubuntu 16.04 (Xenial), with as few additional software as possible.
2#
3# @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source
4#
5# Version 1.0
6#
7
8
9# pull base image
10FROM ubuntu:16.04
11
12MAINTAINER William Yeh <william.pjyeh@gmail.com>
13
14
15RUN echo "===> Adding Ansible's prerequisites..." && \
16 apt-get update -y && \
17 DEBIAN_FRONTEND=noninteractive \
18 apt-get install --no-install-recommends -y -q \
19 build-essential \
20 python-pip python-dev python-yaml \
21 libffi-dev libssl-dev \
22 libxml2-dev libxslt1-dev zlib1g-dev \
23 git && \
24 pip install --upgrade wheel setuptools && \
25 pip install --upgrade pyyaml jinja2 pycrypto && \
26 \
27 \
28 echo "===> Downloading Ansible's source tree..." && \
29 git clone git://github.com/ansible/ansible.git --recursive && \
30 \
31 \
32 echo "===> Compiling Ansible..." && \
33 cd ansible && \
34 bash -c 'source ./hacking/env-setup' && \
35 \
36 \
37 echo "===> Moving useful Ansible stuff to /opt/ansible ..." && \
38 mkdir -p /opt/ansible && \
39 mv /ansible/bin /opt/ansible/bin && \
40 mv /ansible/lib /opt/ansible/lib && \
41 mv /ansible/docs /opt/ansible/docs && \
42 rm -rf /ansible && \
43 \
44 \
45 echo "===> Clean up..." && \
46 apt-get remove -y --auto-remove \
47 build-essential python-pip python-dev git libffi-dev libssl-dev && \
48 apt-get clean && \
49 rm -rf /var/lib/apt/lists/* && \
50 \
51 \
52 echo "===> Adding hosts for convenience..." && \
53 mkdir -p /etc/ansible && \
54 echo 'localhost' > /etc/ansible/hosts
55
56
57ENV PATH /opt/ansible/bin:$PATH
58ENV PYTHONPATH /opt/ansible/lib:$PYTHONPATH
59ENV MANPATH /opt/ansible/docs/man:$MANPATH
60
61
62COPY ansible-playbook-wrapper /usr/local/bin/
63
64ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
65 echo "===> Updating TLS certificates..." && \
66 apt-get install -y openssl ca-certificates
67
68ONBUILD WORKDIR /tmp
69ONBUILD COPY . /tmp
70ONBUILD RUN \
71 echo "===> Diagnosis: host information..." && \
72 ansible -c local -m setup all
73
74
75
76# default command: display Ansible version
77CMD [ "ansible-playbook", "--version" ]
diff --git a/master-ubuntu16.04-onbuild/ansible-playbook-wrapper b/master-ubuntu16.04-onbuild/ansible-playbook-wrapper
new file mode 100755
index 0000000..0ba45e6
--- /dev/null
+++ b/master-ubuntu16.04-onbuild/ansible-playbook-wrapper
@@ -0,0 +1,49 @@
1#!/bin/sh
2#
3# Simple wrapper for executing ansible-galaxy and ansible-playbook
4# with local connection.
5#
6# USAGE:
7# ansible-playbook-wrapper [other ansible-playbook arguments]
8#
9# ENVIRONMENT VARIABLES:
10#
11# - REQUIREMENTS: requirements filename; default = "requirements.yml"
12# - PLAYBOOK: playbook filename; default = "playbook.yml"
13# - INVENTORY: inventory filename; default = "/etc/ansible/hosts"
14#
15
16
17#
18# install Galaxy roles, if any
19#
20
21if [ -z "$REQUIREMENTS" ]; then
22 REQUIREMENTS=requirements.yml
23fi
24
25if [ -f "$REQUIREMENTS" ]; then
26 ansible-galaxy install -r $REQUIREMENTS
27fi
28
29
30#
31# execute playbook
32#
33
34if [ -z "$PLAYBOOK" ]; then
35 PLAYBOOK=playbook.yml
36fi
37
38
39if [ -z "$INVENTORY" ]; then
40 exec ansible-playbook \
41 $PLAYBOOK \
42 --connection=local \
43 "$@"
44else
45 exec ansible-playbook \
46 -i $INVENTORY $PLAYBOOK \
47 --connection=local \
48 "$@"
49fi