diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..cf463228 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM debian:jessie +MAINTAINER Andrew Woodward awoodward@mirantis.com + +ENV DEBIAN_FRONTEND noninteractive + +RUN apt-get update && apt-get -y install --fix-missing \ + curl \ + ssh \ + ansible \ + python-pip + +ADD . /vagrant/ +WORKDIR /vagrant + +RUN ansible-playbook -i "localhost," -c local main.yml + +VOLUME /vagrant \ No newline at end of file diff --git a/Vagrantfile b/Vagrantfile index e491bb36..89a5e321 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,7 +8,7 @@ init_script = <