Move docs to master branch

- build with script/build-docs
- deploy with script/deploy-docs
This commit is contained in:
Aanand Prasad 2014-01-27 11:42:38 +00:00
commit f60621ee1b
14 changed files with 588 additions and 1 deletions

10
docs/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM stackbrew/ubuntu:13.10
RUN apt-get -qq update && apt-get install -y ruby1.8 bundler python
RUN locale-gen en_US.UTF-8
ADD Gemfile /code/
ADD Gemfile.lock /code/
WORKDIR /code
RUN bundle install
ADD . /code
EXPOSE 4000
CMD bundle exec jekyll build