From 8449083237aaccc279bf1ba7483b887b6cb97f78 Mon Sep 17 00:00:00 2001 From: omaroughriss Date: Mon, 8 Sep 2025 19:42:55 +0200 Subject: [PATCH] Add build js to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f00ac5c..ac8f953 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,6 +48,8 @@ COPY . . # Installation des dépendances Node.js RUN npm install +RUN npm run build + EXPOSE 9090 CMD ["npm", "start"]