From c8d1e15e68065e78bd230988ca05224b20cf8763 Mon Sep 17 00:00:00 2001 From: Massimiliano Cannarozzo Date: Mon, 11 Nov 2024 12:28:16 +0100 Subject: [PATCH] Increase network timeout This is due because on GHA it often fails --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad3e812..e0b53f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,12 @@ ADD ./ /var/www/raiapi/ WORKDIR /var/www/raiapi RUN rm -rf src ENV NODE_ENV=production -RUN yarn +RUN yarn install --network-timeout 1000000000 FROM node:16.20.2-alpine AS fe ADD ./ /var/www/raiapi/ WORKDIR /var/www/raiapi -RUN yarn +RUN yarn install --network-timeout 1000000000 ENV NODE_ENV=production RUN yarn build