From bb9a23a6972a3160b7e77ab5749e7541927ff9f2 Mon Sep 17 00:00:00 2001 From: Marco Quintana Date: Thu, 2 May 2024 04:07:54 +0200 Subject: [PATCH] attempt of fixing connection with api's gateway --- webapp/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webapp/Dockerfile b/webapp/Dockerfile index 3cbad8b7..ac15c13f 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -9,6 +9,9 @@ RUN npm install ARG API_URI="http://localhost:8000" ENV REACT_APP_API_ENDPOINT=$API_URI +ARG API_URI2="http://localhost:8100" +ENV REACT_APIS_ENDPOINT=$API_URI2 + #Create an optimized version of the webapp RUN npm run build RUN npm install serve