Sha256: e17e7a16070959ce92c367c05cefaeba26bd985de74626b5a784e425a0ad0d5c
Contents?: true
Size: 791 Bytes
Versions: 2
Compression:
Stored size: 791 Bytes
Contents
FROM ruby:3.3.6 ENV INSTALL_PATH=/opt/inferno/ ENV APP_ENV=production RUN mkdir -p $INSTALL_PATH WORKDIR $INSTALL_PATH ADD lib/<%= library_name %>/metadata.rb $INSTALL_PATH/lib/<%= library_name %>/metadata.rb ADD lib/<%= library_name %>/version.rb $INSTALL_PATH/lib/<%= library_name %>/version.rb 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
inferno_core-0.6.2 | lib/inferno/apps/cli/templates/Dockerfile.tt |
inferno_core-0.6.1 | lib/inferno/apps/cli/templates/Dockerfile.tt |