Create Dockerfile

This commit is contained in:
John Mulhausen 2016-10-03 17:27:35 -07:00 committed by GitHub
parent c1d06249df
commit bc04375f4e
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM starefossen/ruby-node
RUN mkdir -p /docs
VOLUME /docs
EXPOSE 4000
WORKDIR /docs
RUN gem install github-pages
CMD jekyll clean && jekyll serve -H 0.0.0.0 -P 4000