From 9bee6b1a9dee01b2a9bb232e5fd01d5f1250243e Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Thu, 23 Mar 2023 12:05:01 +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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index e886109..312669a 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -3,9 +3,9 @@ ENV PORT=8080 WORKDIR /app ARG http_proxy=http://193.49.118.36:8080 https_proxy=http://193.49.118.36:8080 RUN ls && pwd -COPY package*.json ./ -COPY tsconfig.json ./ -COPY . . +COPY package*.json /app +COPY tsconfig.json /app +COPY . /app RUN npm install RUN npm run build