From c473ee7e4781cbfffa6993176cc08f729773a8fd Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Tue, 27 Sep 2022 08:13:48 -0700 Subject: [PATCH] try to fix timeout for Yarn on GH Actions. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 945caad4..d5afe7c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /usr/src/fastenhealth/frontend #COPY frontend/package.json frontend/yarn.lock ./ COPY frontend/package.json ./ COPY frontend/yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --network-timeout 100000 COPY frontend/ ./ RUN yarn run build -- --configuration sandbox --output-path=../dist