You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/rotp-6.3.0/Dockerfile-2.7

12 lines
163 B

FROM ruby:2.7
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY Gemfile /usr/src/app/
COPY . /usr/src/app
RUN bundle install
CMD ["bundle", "exec", "rspec"]