agaric-coop/box/provisioning/roles/thom8.php-upload-progress/tests/Dockerfile.ubuntu-12.04

14 lines
373 B
Text
Raw Normal View History

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