solar/Dockerfile
Andrew Woodward 951eac1fcb Add dockerfile to build container
Split the main vagrant to remove items we cant do during docker build.

Rename openstack -> kolla.yml since thats what it works with.
2015-04-07 12:38:49 -07:00

17 lines
311 B
Docker

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