dockerfiles/ansible/Dockerfile
Jess Frazelle 3c1634b3d0
fix py2
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-10 16:14:50 -08:00

36 lines
636 B
Docker

# https://www.ansible.com/
#
# docker run --rm \
# -it \
# -v ${PWD}/hosts:/etc/ansible/hosts \
# -v ${PWD}/ansible.cfg:/etc/ansible/ansible.cfg \
# -v ${HOME}/.ssh:/root/.ssh:ro \
# ansible all -m ping
#
FROM alpine:latest
MAINTAINER Christian Koep <christian.koep@fom-net.de>
RUN builddeps=' \
python-dev \
py2-pip \
musl-dev \
openssl-dev \
libffi-dev \
gcc \
' \
&& apk --no-cache add \
ca-certificates \
python \
py-paramiko \
py-yaml \
py-jinja2 \
py-httplib2 \
$builddeps \
&& pip install --upgrade pip \
&& pip install \
ansible \
six \
&& apk del --purge $builddeps
ENTRYPOINT [ "ansible" ]