Sha256: 10e1d8d1e313a29c5f7106da7e122f2285e7d024c80915550615c207cb8d7c59
Contents?: true
Size: 703 Bytes
Versions: 2
Compression:
Stored size: 703 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 lib/<%= library_name %>/metadata.rb $INSTALL_PATH/lib/<%= library_name %>/metadata.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.5.4 | lib/inferno/apps/cli/templates/Dockerfile.tt |
inferno_core-0.5.3 | lib/inferno/apps/cli/templates/Dockerfile.tt |