From efade5429bc226abb87c6076370e4a7b5eb7aaa5 Mon Sep 17 00:00:00 2001 From: koziavin Date: Wed, 11 Jun 2025 21:15:10 +0400 Subject: [PATCH] first commit --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 569ebee..9dde5f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,10 @@ WORKDIR /app # Copy package files COPY package.json yarn.lock ./ -# Install dependencies -RUN yarn install --frozen-lockfile +# Install dependencies with increased timeout and retry settings +RUN yarn config set network-timeout 300000 && \ + yarn config set network-concurrency 1 && \ + yarn install --frozen-lockfile --network-timeout 300000 # Copy source code COPY . .