From 5b022b9394623b47a9fe85654ef54131516314ae Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Fri, 1 Mar 2024 10:21:51 +0000 Subject: [PATCH] chore: reduce threads for bundling in docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 40eb0d0..2a93599 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN gem install bundler -v 2.5.6 --no-doc # Install the latest and active gem dependencies and re-run # the appropriate commands to handle installs. COPY --chown=postal Gemfile Gemfile.lock ./ -RUN bundle install -j 6 +RUN bundle install -j 4 # Copy the application (and set permissions) COPY ./docker/wait-for.sh /docker-entrypoint.sh