From 27dc724fd5cafbdffec62e080b7fab280cc7da4d Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 21 Sep 2023 20:28:37 +0100 Subject: [PATCH] Fix nokogiri build on arm --- Dockerfile.aarch64 | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ad81380..a0a0728 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -57,6 +57,7 @@ RUN \ bundle config set --local deployment 'true' && \ bundle config set --local without 'development test exclude' && \ bundle config set silence_root_warning true && \ + bundle config set force_ruby_platform true && \ bundle install -j"$(nproc)" --no-cache && \ yarn install --production --frozen-lockfile --check-files && \ cd streaming && \