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