mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-05 11:41:22 -06:00
14 lines
197 B
Docker
14 lines
197 B
Docker
FROM ruby:2.6
|
|
|
|
ENV LC_ALL C.UTF-8
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US.UTF-8
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY Gemfile just-the-docs.gemspec ./
|
|
RUN gem install bundler && bundle install
|
|
|
|
EXPOSE 4000
|
|
|