Dockerfile 270 B

1234567891011121314151617
  1. FROM ruby:2.4.0
  2. MAINTAINER Conor Heine <conor.heine@gmail.com>
  3. RUN apt-get update
  4. RUN apt-get -y install git nodejs
  5. COPY . /devdocs
  6. RUN gem install bundler
  7. WORKDIR /devdocs
  8. RUN bundle install --system
  9. RUN thor docs:download --all
  10. EXPOSE 9292
  11. CMD rackup -o 0.0.0.0