From c171371d33ad2543bd26a055624ee3056ce56f39 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Wed, 29 Mar 2023 11:08:12 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'src/Api/Dockerfile?= =?UTF-8?q?'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Api/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index e2560a1..5eadece 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -1,10 +1,9 @@ FROM node:latest WORKDIR /Api -RUN ls ADD package.json /Api ADD tsconfig.json /Api ADD . /Api -RUN npm install +RUN npm install RUN npm run build EXPOSE 8080 CMD [ "node","." ]