From 202a27a19711e98b9b03f17a0f3d0f2115fac07f Mon Sep 17 00:00:00 2001 From: Shamira <23406866+MiraMarshall@users.noreply.github.com> Date: Wed, 4 May 2022 09:44:36 -0500 Subject: [PATCH] docker build fix for M1 (#17) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index bf21e80e36..fd28246106 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ WORKDIR /app ENV JEKYLL_ENV=development RUN gem install bundler COPY Gemfile Gemfile.lock ./ +RUN bundle config set force_ruby_platform true RUN bundle install # Install Node deps