From bca35b06f5b2eb1e1d995282c8c997ac88e35e48 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Fri, 24 Mar 2023 04:12:26 +0100 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 2579dd8..025f399 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -3,8 +3,12 @@ RUN ls /usr ADD package.json /app ADD tsconfig.json /app RUN cat package.json +RUN find . -name package.json -type f -print +RUN mkdir /app WORKDIR /app ADD . /app +RUN find . -name package.json -type f -print +RUN find /app -name package.json -type f -print RUN npm install RUN npm run build