From df4abc64727f1797a3efcd881594e5a6b48bb413 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 4 Nov 2022 19:16:13 +0100 Subject: [PATCH] jekyll: enforce ruby platform to compile gems with native extensions from source Signed-off-by: CrazyMax --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7a015513e7..53e669da52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,7 @@ ARG BUNDLER_VERSION COPY Gemfile* . RUN gem uninstall -aIx bundler \ && gem install bundler -v ${BUNDLER_VERSION} \ + && bundle config set force_ruby_platform true \ && bundle install --jobs 4 --retry 3 # Vendor Gemfile for Jekyll