From 1035f1e214f92d870e675de55e93701b0bd4f78e Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Fri, 24 Mar 2023 03:16:53 +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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 09cab4e..1dabe59 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -1,10 +1,10 @@ FROM node:latest ENV PORT=8080 WORKDIR /app -ARG http_proxy=http://193.49.118.36:8080 https_proxy=http://193.49.118.36:8080 -COPY package*.json ./ -COPY tsconfig.json ./ -COPY . . +#ARG http_proxy=http://193.49.118.36:8080 https_proxy=http://193.49.118.36:8080 +ADD package*.json . +ADD tsconfig.json . +ADD . . RUN npm install RUN npm run build