From 19f17248e7f716e85b4ed1f98778a7957401c30e Mon Sep 17 00:00:00 2001 From: Tim Cowlishaw Date: Sat, 21 Dec 2024 13:10:41 +0100 Subject: [PATCH] yarn install in dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 71c3e885..48d6a2fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,6 +42,8 @@ ARG BUNDLE_WITHOUT ENV BUNDLE_WITHOUT ${BUNDLE_WITHOUT} RUN bundle install +RUN . $NVM_DIR/nvm.sh && yarn install + # Copy the Rails application into place COPY . /app