From 0246cdafc56aea7374241fe0fafc82a97d9be8f1 Mon Sep 17 00:00:00 2001 From: btobin Date: Thu, 21 Apr 2022 11:46:07 -0400 Subject: [PATCH] Add post-install fix for nokogiri aarch in setup --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5ef1052e69..a074c6a8d5 100644 --- a/Makefile +++ b/Makefile @@ -53,9 +53,10 @@ shell: # overcome inconsistent bugs with missing packages at runtime. setup: make clean - docker-compose build site - docker-compose run --rm site bundle install + docker-compose build --no-cache site docker-compose run --rm site npm install + docker-compose run --rm site bundle config set force_ruby_platform true + docker-compose run --rm site bundle install # Serve the Jekyll site with livereload and incremental builds # NOTE this is run inside of the container on `make up`