From 8eba5a36b1676551b71b084639a8b9b8c0afd09d Mon Sep 17 00:00:00 2001 From: Pete Holiday Date: Thu, 21 Mar 2024 01:39:15 -0400 Subject: [PATCH] Forces libv8-node and mini_racer installs ahead of bundle install --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 96f9a26..6a9a03f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ RUN mkdir -p /var/app COPY Gemfile /var/app/Gemfile COPY Gemfile.lock /var/app/Gemfile.lock WORKDIR /var/app +RUN gem install libv8-node:16.19.0.1 +RUN gem install mini_racer:0.6.4 RUN gem install bundler -v 1.17 RUN bundle install