blob: cb3bd661b80a684071857087a1f6f70cd1bdfa67 (
plain) (
tree)
|
|
# Dockerfile for building Ansible image for Alpine 3, with as few additional software as possible.
#
# @see https://github.com/gliderlabs/docker-alpine/blob/master/docs/usage.md
#
# Version 1.0
#
# pull base image
FROM alpine:3.4
MAINTAINER William Yeh <william.pjyeh@gmail.com>
RUN echo "===> Adding Python runtime..." && \
apk --update add python py-pip openssl ca-certificates && \
apk --update add --virtual build-dependencies \
python-dev libffi-dev openssl-dev build-base && \
pip install --upgrade pip cffi && \
\
\
echo "===> Installing Ansible..." && \
pip install ansible && \
\
\
echo "===> Installing handy tools (not absolutely required)..." && \
apk --update add sshpass openssh-client && \
\
\
echo "===> Removing package list..." && \
apk del build-dependencies && \
rm -rf /var/cache/apk/* && \
\
\
echo "===> Adding hosts for convenience..." && \
mkdir -p /etc/ansible && \
echo 'localhost' > /etc/ansible/hosts
# default command: display Ansible version
CMD [ "ansible-playbook", "--version" ]
|