From 137a5828df3ca83a78e65310a4b2c889c3700f70 Mon Sep 17 00:00:00 2001 From: Michael Albert Date: Wed, 25 Jan 2023 09:13:44 +0100 Subject: [PATCH] Raise yarn install timeout limit to avoid build errors @mui/icons-material needs much time to install and raises the overall yarn install time to about 150 seconds Change-Id: Ibe9808554c97d0991a336d3c7588502af8505a3f --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a5d5171..7eb35d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ARG REACT_APP_SERVER WORKDIR /src COPY . /src -RUN yarn --network-timeout=100000 install +RUN yarn --network-timeout=300000 install RUN PUBLIC_URL=$PUBLIC_URL REACT_APP_SERVER=$REACT_APP_SERVER yarn build