Sha256: 1fda71e1ac27b65c27862e74e3df71280c1cd8899b8e4df99a64d48234028980
Contents?: true
Size: 319 Bytes
Versions: 14
Compression:
Stored size: 319 Bytes
Contents
# Use this Dockerfile to create minimal reproductions of issues FROM ruby:3.2 # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 WORKDIR /usr/src/app COPY . . RUN bundle install RUN bundle exec rake compile EXPOSE 9292 CMD bundle exec bin/puma test/rackup/hello.ru
Version data entries
14 entries across 14 versions & 4 rubygems