From 01fca8b5346a687ea0a3dac12fd2df7b991877e1 Mon Sep 17 00:00:00 2001 From: MrWaffelXD <64161405+MrWaffelXD@users.noreply.github.com> Date: Sun, 21 Jul 2024 22:13:01 +0200 Subject: [PATCH] fixed a dependency issue which led to an error during build --- mod/recordings/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/recordings/Dockerfile b/mod/recordings/Dockerfile index 9f087630..c04ac861 100644 --- a/mod/recordings/Dockerfile +++ b/mod/recordings/Dockerfile @@ -78,7 +78,7 @@ COPY --from=presentation /scripts /usr/local/bigbluebutton/core/scripts/ # install ruby dependencies RUN cd /usr/local/bigbluebutton/core \ && gem install builder \ - && gem install bundler --no-document \ + && gem install bundler -v 2.4.22 --no-document \ && bundle config set --local deployment true \ && bundle install \ && bundle clean \