From dd71a08fe962099b0f8376d62056d92c776e5fc6 Mon Sep 17 00:00:00 2001 From: Michael Albert Date: Wed, 25 Jan 2023 12:05:56 +0100 Subject: [PATCH] Preinstall icons-material to avoid timeout Change-Id: Ie4b5fa3a923cac19a3f2eeae5f6c06245d0b8cc2 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7eb35d5..88b4637 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ ARG REACT_APP_SERVER WORKDIR /src COPY . /src -RUN yarn --network-timeout=300000 install +RUN yarn --network-timeout 500000 add @mui/icons-material +RUN yarn --network-timeout=100000 install RUN PUBLIC_URL=$PUBLIC_URL REACT_APP_SERVER=$REACT_APP_SERVER yarn build