From f087d6f1ea8023026276e9a74b47931cee45c69b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 7 Sep 2021 20:45:40 +0200 Subject: [PATCH] Remove step to install Bundler in Dockerfile I think we could have already done so when upgrading Ruby to version 2.6.x (which also included the Bundler gem), but since we didn't, now that we've upgraded to Bundler 2.x it's probably a good moment. --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6bcdab13c..9fc8d5e51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,9 +34,6 @@ COPY Gemfile.lock Gemfile.lock COPY Gemfile_custom Gemfile_custom -# Prevent bundler warnings; ensure that the bundler version executed is >= that which created Gemfile.lock -RUN gem install bundler - # Finish establishing our Ruby environment RUN bundle install --full-index