danielrayjones/Dockerfile
2023-03-29 14:40:35 -05:00

7 lines
135 B
Docker

FROM ruby:2.7
RUN gem install bundler:2.0.2 && \
bundle config --global frozen 1
COPY Gemfile Gemfile.lock ./
RUN bundle install