ansible-role-apache/roles/ansible-role-php/tests/Dockerfile.ubuntu-14.04
2016-07-06 07:38:28 +10:00

11 lines
316 B
Text
Executable file

FROM ubuntu:14.04
RUN apt-get update
# 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