mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
17 lines
270 B
Docker
17 lines
270 B
Docker
|
|
FROM ruby:2.4.0
|
|
MAINTAINER Conor Heine <conor.heine@gmail.com>
|
|
|
|
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
|
|
|