From 2c9f1b42fe976acf41e82f4a2dae7896ee8799da Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Mon, 24 Apr 2017 12:45:07 +0200 Subject: [PATCH] Faster `bundle install` when building Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5378c51..7e9386d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,7 +82,7 @@ RUN mkdir -p /app/tmp /app/log WORKDIR /app COPY Gemfile* /app/ -RUN bundle install --deployment --without development test +RUN bundle install --deployment --without development test --jobs 10 --retry 5 # build a2png