ansible-role-apache/tests/Dockerfile.ubuntu-14.04
2015-12-14 09:17:30 -06:00

10 lines
297 B
Text

FROM ubuntu:14.04
# Install Ansible
RUN apt-get install -y software-properties-common git
RUN apt-add-repository -y ppa:ansible/ansible
RUN apt-get update
RUN apt-get install -y ansible
# Install Ansible inventory file
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts