mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
24 lines
451 B
Docker
24 lines
451 B
Docker
FROM ruby:2.6.0
|
|
|
|
ENV LANG=C.UTF-8
|
|
|
|
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
|
|
|
|
EXPOSE 9292
|
|
CMD rackup -o 0.0.0.0
|