From 70651b75f73922227293e3cee4d30b65d71ebcf2 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Mar 2024 20:51:35 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=97=20=20Restricts=20network=20concure?= =?UTF-8?q?ncy=20to=201=20thread,=20and=20adds=20verbose=20logging=20to=20?= =?UTF-8?q?installation=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f1df5c31..960edd61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ WORKDIR /app # Install app dependencies COPY package.json yarn.lock ./ -RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 600000 +RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1 --verbose # Copy over all project files and folders to the working directory COPY . ./