From ebe91bcf1cef26fcf9fb59bc3e8c632f7726c9b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alicia=20Fern=C3=A1ndez=20Pushkina?= <79641793+aliciafp15@users.noreply.github.com> Date: Wed, 19 Apr 2023 09:24:07 +0200 Subject: [PATCH] =?UTF-8?q?Modificada=20l=C3=ADnea=20de=20instalaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * AƱadido "--force" para evitar problemas de dependencias. #173 --- webapp/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/Dockerfile b/webapp/Dockerfile index 67e5e2a2..c6921599 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -3,7 +3,7 @@ LABEL org.opencontainers.image.source https://github.com/arquisoft/lomap_es6b COPY . /app WORKDIR /app #Install the dependencies -RUN npm install +RUN npm install --force ARG API_URI="http://localhost:5000/api" ENV REACT_APP_API_URI=$API_URI