From b7962af4541442c4ceabb046e55ee879a98f8709 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Fri, 24 Mar 2023 03:23:54 +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, 2 insertions(+), 2 deletions(-) diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 6480018..486c634 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -2,8 +2,8 @@ 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 -#ADD package*.json /app -#ADD tsconfig.json /app +ADD package*.json /app +ADD tsconfig.json /app ADD . /app RUN npm install