Use bundle install without deployment mode for Ruby 2.6 compat

This commit is contained in:
Min Zeya Phyo
2026-02-19 15:46:02 +08:00
parent 48d37dd550
commit 6e7034374d

View File

@@ -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 . .