Fix: install bundler 2.4.21 to match Gemfile.lock

This commit is contained in:
Ubuntu
2026-02-06 06:39:24 +00:00
parent 318443e918
commit 8a7a17f3ce

View File

@@ -13,6 +13,9 @@ RUN apt-get update -qq && apt-get install -y --no-install-recommends \
WORKDIR /app
# Install correct bundler version (must match Gemfile.lock BUNDLED WITH)
RUN gem install bundler:2.4.21
# Install gems
COPY Gemfile Gemfile.lock ./
RUN bundle install --deployment --without development test --jobs 4