FROM ruby:2.3.0 MAINTAINER Conor Heine RUN apt-get update RUN apt-get -y install git nodejs COPY . /devdocs RUN gem install bundler WORKDIR /devdocs RUN bundle install --system RUN thor docs:download --all EXPOSE 9292 CMD rackup -o 0.0.0.0