Create Dockerfile

This commit is contained in:
John Mulhausen
2016-10-05 21:56:57 -07:00
committed by GitHub
parent ec10e0f39a
commit 3ac9d91110

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.4
ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000