From 9c426fcab6cc9a737f8c9f827119a7253dfe0065 Mon Sep 17 00:00:00 2001 From: bkellam Date: Thu, 5 Sep 2024 18:04:51 -0700 Subject: [PATCH] Try increasing yarn network timeout to fix failing github action --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ac92e301..db4589df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM node-alpine AS web-builder RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json yarn.lock* ./ -RUN yarn --frozen-lockfile +RUN yarn --frozen-lockfile --network-timeout=30000 COPY . . ENV NEXT_TELEMETRY_DISABLED=1 RUN yarn run build