From 959cce4a42d25f80f38e935a472e2d7856b14512 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Sun, 14 Jan 2024 13:04:29 +0100 Subject: [PATCH] https://github.com/docker/build-push-action/issues/471#issuecomment-928456949 --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 99c4ca7e5..5c850057c 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY package.json yarn.lock .env ./ COPY public ./public COPY patches ./patches -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --network-timeout 1000000 COPY config-overrides.js tsconfig.json ./ COPY src ./src RUN yarn build