mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-12-22 19:10:19 +01:00
13 lines
373 B
Text
13 lines
373 B
Text
FROM ubuntu:12.04
|
|
|
|
# Add `apt-add-repository`.
|
|
RUN apt-get install python-software-properties
|
|
|
|
# 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
|