From 418470996b933693001bf05ba9dc4074274eed88 Mon Sep 17 00:00:00 2001 From: bigq Date: Thu, 19 Jan 2023 18:10:40 +0100 Subject: [PATCH] feat: add network-timeout to prevent yarn network error when publishing Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d3cd1573..b47812e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/build # Install dependencies COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --network-timeout 100000 COPY . . RUN yarn compile