From afaa5d4f7b6512a2e6f7549d92c838aa46bfdd3d Mon Sep 17 00:00:00 2001 From: Thomas Clavier Date: Wed, 29 Nov 2023 23:12:16 +0100 Subject: [PATCH] install npm deps in docker --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d81422588..17b93caef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,4 +14,7 @@ WORKDIR /workspace COPY Gemfile /workspace COPY Gemfile.lock /workspace RUN bundle install +COPY package.json /workspace +COPY package-lock.json /workspace +RUN npm ci CMD bash