From 0b468f97c5cfc73f123448dacd13738cd795989c Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Fri, 1 Mar 2024 13:00:10 +0000 Subject: [PATCH] chore: remove -j4 from bundle install as it shouldn't be needed --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a93599..a0a209e 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 4 +RUN bundle install # Copy the application (and set permissions) COPY ./docker/wait-for.sh /docker-entrypoint.sh