From 0ac4bae36ab6e88c42392be13342dc4981bb3948 Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Wed, 5 Oct 2016 22:35:12 -0700 Subject: [PATCH] Part 4 draft, Dockerfiles for vnext compose/machine --- _data/docsarchive/vnext-compose/Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 _data/docsarchive/vnext-compose/Dockerfile diff --git a/_data/docsarchive/vnext-compose/Dockerfile b/_data/docsarchive/vnext-compose/Dockerfile new file mode 100644 index 0000000000..cd0bf3eebf --- /dev/null +++ b/_data/docsarchive/vnext-compose/Dockerfile @@ -0,0 +1,12 @@ + +FROM starefossen/github-pages:onbuild + +ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs + +ONBUILD WORKDIR docs + +ONBUILD RUN git checkout vnext-compose + +ONBUILD COPY . /usr/src/app + +CMD jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000