Sha256: 690eb323a8504d452d6f5f06b352b0d029abf90e809e5791f4273e29b67f47f2
Contents?: true
Size: 615 Bytes
Versions: 15
Compression:
Stored size: 615 Bytes
Contents
FROM ruby:3.1.2 ENV INSTALL_PATH=/opt/inferno/ ENV APP_ENV=production RUN mkdir -p $INSTALL_PATH WORKDIR $INSTALL_PATH ADD *.gemspec $INSTALL_PATH ADD Gemfile* $INSTALL_PATH RUN gem install bundler # The below RUN line is commented out for development purposes, because any change to the # required gems will break the dockerfile build process. # If you want to run in Deploy mode, just run `bundle install` locally to update # Gemfile.lock, and uncomment the following line. # RUN bundle config set --local deployment 'true' RUN bundle install ADD . $INSTALL_PATH EXPOSE 4567 CMD ["bundle", "exec", "puma"]
Version data entries
15 entries across 15 versions & 1 rubygems