ansible-fprobe/test/travis/Dockerfile.alpine-3.4
2016-10-30 15:40:48 -04:00

10 lines
241 B
Docker

FROM alpine:3.4
RUN apk update
# Install Ansible
RUN apk add git ansible python python-dev py-pip
RUN mkdir /etc/ansible
# Install Ansible inventory file
RUN (echo "[local]"; echo "localhost ansible_connection=local") > /etc/ansible/hosts