mirror of
https://github.com/FlightControl-Master/MOOSE_DOCS.git
synced 2025-08-15 10:37:49 +00:00
13 lines
174 B
Docker
13 lines
174 B
Docker
FROM ruby:2.7
|
|
|
|
ENV LC_ALL C.UTF-8
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US.UTF-8
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY Gemfile ./
|
|
RUN gem install bundler && bundle install
|
|
|
|
EXPOSE 4000
|