Skip to content

Commit 08053d3

Browse files
committed
Revert jobs back to 1.
1 parent 0f544fd commit 08053d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ COPY Gemfile Gemfile.lock vendor ./
5555
RUN 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
6161
COPY . .
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
6868
RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile

0 commit comments

Comments
 (0)