From 56637089a7f6cc16c6adc03f6386c97999e1e2e7 Mon Sep 17 00:00:00 2001 From: ARIC LASRY Date: Tue, 21 Nov 2023 15:08:44 +0100 Subject: [PATCH] npm install --- front/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/Dockerfile b/front/Dockerfile index b402dd0359f6..7c99892812fd 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -1,7 +1,7 @@ FROM node:18.15.0 as front COPY ../types/ /types -RUN npm ci +RUN npm install && npm run build WORKDIR /app