File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,14 @@ COPY Gemfile Gemfile.lock vendor ./
5555RUN bundle install && \
5656 rm -rf ~/.bundle/ "${BUNDLE_PATH}" /ruby/*/cache "${BUNDLE_PATH}" /ruby/*/bundler/gems/*/.git && \
5757 # -j 1 disable parallel compilation to avoid a QEMU bug: https://github.com/rails/bootsnap/issues/495
58- bundle exec bootsnap precompile -j 0 --gemfile
58+ bundle exec bootsnap precompile -j 1 --gemfile
5959
6060# Copy application code
6161COPY . .
6262
6363# Precompile bootsnap code for faster boot times.
6464# -j 1 disable parallel compilation to avoid a QEMU bug: https://github.com/rails/bootsnap/issues/495
65- RUN bundle exec bootsnap precompile -j 0 app/ lib/
65+ RUN bundle exec bootsnap precompile -j 1 app/ lib/
6666
6767# Precompiling assets for production without requiring secret RAILS_MASTER_KEY
6868RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
You can’t perform that action at this time.
0 commit comments