From f405861c60f6b8519ac5eac67eac207c4da7a8e3 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Thu, 15 Feb 2024 09:37:38 -0600 Subject: [PATCH] ci: Ruby 2.7 needs an older version of bundler Pin Bundler to 2.4.22 so that 2.7 CI keeps working. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b770a1130..bca1e0be0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app RUN touch /etc/app-env COPY Gemfile* /app/ -RUN gem install bundler +RUN gem install bundler -v 2.4.22 RUN bundle install --jobs 4 RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -