devdocs/Dockerfile

23 lines
433 B
Text
Raw Normal View History

2017-04-15 16:15:34 +02:00
FROM ruby:2.4.1
2015-12-01 21:46:16 +01:00
WORKDIR /devdocs
RUN apt-get update && \
apt-get -y install git nodejs && \
gem install bundler && \
rm -rf /var/lib/apt/lists/*
COPY Gemfile Gemfile.lock Rakefile /devdocs/
RUN bundle install --system && \
rm -rf ~/.gem /root/.bundle/cache /usr/local/bundle/cache
COPY . /devdocs
RUN thor docs:download --all && \
thor assets:compile && \
rm -rf /tmp
2015-12-01 21:46:16 +01:00
EXPOSE 9292
CMD rackup -o 0.0.0.0