Try increasing yarn network timeout to fix failing github action

This commit is contained in:
bkellam 2024-09-05 18:04:51 -07:00
parent ee4c658b28
commit 9c426fcab6

View file

@ -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