You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/Dockerfile

22 lines
376 B

8 years ago
FROM ruby:2.4.1
9 years ago
MAINTAINER Conor Heine <conor.heine@gmail.com>
WORKDIR /devdocs
RUN apt-get update && \
apt-get -y install git nodejs && \
gem install bundler
COPY Gemfile Gemfile.lock Rakefile /devdocs/
9 years ago
RUN bundle install --system
COPY . /devdocs
RUN thor docs:download --all && \
thor assets:compile && \
rm -rf /tmp
9 years ago
EXPOSE 9292
CMD rackup -o 0.0.0.0