From 5981b72aef044192e8c15c1275ef4843f80245fe Mon Sep 17 00:00:00 2001 From: "Utkir S." Date: Wed, 17 Jul 2024 16:43:20 +0500 Subject: [PATCH] dockerfile: increase network timeout limit (#219) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fa0e9288..a284c702 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apt update && apt-get install -y g++ make python3 git && rm -rf /var/cache/a COPY --from=build_src /usr/app . -RUN yarn install --non-interactive --frozen-lockfile --production --force +RUN yarn install --non-interactive --frozen-lockfile --production --force --network-timeout 1000000 RUN cd node_modules/bcrypto && yarn install