diff --git a/Dockerfile b/Dockerfile index 1528fbe..c032dd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -95,10 +95,13 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ # verify we have no "ruby" packages installed if dpkg -l | grep -i ruby; then exit 1; fi; \ [ "$(command -v ruby)" = '/usr/local/bin/ruby' ]; \ + # Install latest bundler in addition to the one that comes with ruby + gem install bundler -v 4.0.11; \ # Disable system libffi for `ffi` gem because it currently doesn't work with Debian Bookworm's FFI # See https://github.com/ffi/ffi/issues/1036 bundle config build.ffi --disable-system-libffi; \ # rough smoke test ruby --version; \ gem --version; \ - bundle --version + bundle --version; \ + gem list bundler;