Sha256: 9dbfe8e61df4fd3037cd425e14a61d664aff07df02eacde9fdebce5afae601b2
Contents?: true
Size: 342 Bytes
Versions: 79
Compression:
Stored size: 342 Bytes
Contents
# Use this Dockerfile to create minimal reproductions of issues FROM ruby:2.6 # 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
79 entries across 76 versions & 5 rubygems