From d8bcfc20ab0041bc8d5c8ad7be4f35552a11146b Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Wed, 5 Oct 2016 21:57:49 -0700 Subject: [PATCH] Create Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..3d807d67e6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +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 v1.5 + +ONBUILD COPY . /usr/src/app + +CMD jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000