We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a new Rails app, There are some env
ruby 3.3.5 rails 8.0.0 kamal 2.3.0
Dockerfile
# Install application gems RUN bundle install RUN rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git RUN rm -rf tmp/cache/bootsnap* RUN bundle exec bootsnap precompile --gemfile # Copy application code COPY . . # Precompile bootsnap code for faster boot times RUN bundle exec bootsnap precompile app/ lib/ # Precompiling assets for production without requiring secret RAILS_MASTER_KEY RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
When I run kamal setup
DEBUG [c688ef86] #15 /bin/sh -c bundle install DEBUG [c688ef86] #15 CACHED DEBUG [c688ef86] DEBUG [c688ef86] #16 /bin/sh -c rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git DEBUG [c688ef86] #16 CACHED DEBUG [c688ef86] DEBUG [c688ef86] #17 /bin/sh -c rm -rf tmp/cache/bootsnap* DEBUG [c688ef86] #17 CACHED DEBUG [c688ef86] DEBUG [c688ef86] #18 /bin/sh -c bundle exec bootsnap precompile --gemfile
The text was updated successfully, but these errors were encountered:
I changed ruby version to 3.2.5. bootsnap precompile is ok!
Sorry, something went wrong.
No branches or pull requests
I have a new Rails app, There are some env
Dockerfile
When I run kamal setup
The text was updated successfully, but these errors were encountered: