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