summaryrefslogtreecommitdiff
path: root/src/three-minute-demo/Dockerfile
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2017-11-05 13:24:37 +1100
committerMonty Taylor <mordred@inaugust.com>2017-11-05 17:07:06 +1100
commit4ac60cf090af9618bd52b4b30cac4ee31b5d5967 (patch)
tree7dda33747456c3b806d25c4318bef9b717f8aa3e /src/three-minute-demo/Dockerfile
parent2f5dfc495113c6dadf66fc7d5d395f90118514ca (diff)
Add ansible playbooks for 3 minute multi-cloud demo
Diffstat (limited to 'src/three-minute-demo/Dockerfile')
-rw-r--r--src/three-minute-demo/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/three-minute-demo/Dockerfile b/src/three-minute-demo/Dockerfile
new file mode 100644
index 0000000..823c94e
--- /dev/null
+++ b/src/three-minute-demo/Dockerfile
@@ -0,0 +1,11 @@
1FROM python
2
3RUN apt-get update && \
4 apt-get install -y qemu-utils libffi-dev libssl-dev sudo \
5 rpm yum-utils debootstrap && \
6 pip install ansible shade diskimage-builder
7VOLUME /demo
8WORKDIR /demo
9
10ENTRYPOINT ["ansible-playbook"]
11CMD ["demo.yaml"]