From 6e7034374dc732dab22954b5ead7f13718c62561 Mon Sep 17 00:00:00 2001 From: Min Zeya Phyo Date: Thu, 19 Feb 2026 15:46:02 +0800 Subject: [PATCH] Use bundle install without deployment mode for Ruby 2.6 compat --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79842a6..c09fa75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,7 @@ RUN gem install bundler:1.17.2 WORKDIR /app COPY Gemfile Gemfile.lock ./ -RUN bundle lock --update && \ - bundle install --without development test --jobs 4 +RUN bundle install --without development test --jobs 4 --retry 3 COPY . .