From c9160966d7b95918aefe7fc2cfcd51491d56f4ff Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Mon, 4 Jul 2016 16:36:04 -0500 Subject: Convert tests to use Docker for full OS coverage. --- tests/Dockerfile.ubuntu-14.04 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/Dockerfile.ubuntu-14.04 (limited to 'tests/Dockerfile.ubuntu-14.04') diff --git a/tests/Dockerfile.ubuntu-14.04 b/tests/Dockerfile.ubuntu-14.04 new file mode 100644 index 0000000..ca33287 --- /dev/null +++ b/tests/Dockerfile.ubuntu-14.04 @@ -0,0 +1,11 @@ +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 -- cgit v1.2.3