Create Dockerfile

This commit is contained in:
John Mulhausen
2016-10-05 21:57:49 -07:00
committed by GitHub
parent 362dc910a9
commit d8bcfc20ab

11
Dockerfile Normal file
View File

@@ -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