devdocs/Dockerfile

18 lines
270 B
Text
Raw Normal View History

2015-12-01 21:46:16 +01:00
2017-04-15 16:15:34 +02:00
FROM ruby:2.4.1
2015-12-01 21:46:16 +01:00
MAINTAINER Conor Heine <conor.heine@gmail.com>
RUN apt-get update
RUN apt-get -y install git nodejs
COPY . /devdocs
2015-12-01 21:46:16 +01:00
RUN gem install bundler
WORKDIR /devdocs
RUN bundle install --system
RUN thor docs:download --all
EXPOSE 9292
CMD rackup -o 0.0.0.0