From 8e1f08fbf2b036d11d72348274866d8cbb0b2514 Mon Sep 17 00:00:00 2001 From: bkellam Date: Thu, 5 Sep 2024 19:23:06 -0700 Subject: [PATCH] nit --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db4589df..e0c14b69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,9 @@ FROM node-alpine AS web-builder RUN apk add --no-cache libc6-compat WORKDIR /app COPY package.json yarn.lock* ./ -RUN yarn --frozen-lockfile --network-timeout=30000 +RUN yarn config set registry https://registry.npmjs.org/ +RUN yarn config set network-timeout 1200000 +RUN yarn --frozen-lockfile COPY . . ENV NEXT_TELEMETRY_DISABLED=1 RUN yarn run build