blob: d9a187345d9fbcb5de8f7fd9d8ae67aa6fee1abf (
plain) (
tree)
|
|
# Dockerfile for building Ansible image for Ubuntu 14.04 (trusty), with as few additional software as possible.
#
# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible
#
# Version 1.0
#
# pull base image
FROM ubuntu:14.04
MAINTAINER William Yeh <william.pjyeh@gmail.com>
RUN echo "===> Adding Ansible's PPA..." && \
echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" | tee /etc/apt/sources.list.d/ansible.list && \
echo "deb-src http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" | tee -a /etc/apt/sources.list.d/ansible.list && \
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7BB9C367 && \
DEBIAN_FRONTEND=noninteractive apt-get update && \
\
\
echo "===> Installing Ansible..." && \
apt-get install -y ansible && \
\
\
echo "===> Removing Ansible PPA..." && \
rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/ansible.list && \
\
\
echo "===> Adding hosts for convenience..." && \
echo 'localhost' > /etc/ansible/hosts
COPY ansible-playbook-wrapper /usr/local/bin/
ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
echo "===> Updating TLS certificates..." && \
apt-get install -y openssl ca-certificates
ONBUILD WORKDIR /tmp
ONBUILD COPY . /tmp
ONBUILD RUN \
echo "===> Diagnosis: host information..." && \
ansible -c local -m setup all
# default command: display Ansible version
CMD [ "ansible-playbook", "--version" ]
|