From 79c0c221525cb054f0867151c3c4ee1479b61072 Mon Sep 17 00:00:00 2001 From: Shawn Jackson Date: Thu, 5 Feb 2026 15:02:37 -0800 Subject: [PATCH] RD-T39 Build fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3566192..48f602f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ RUN apk add --no-cache python3 make g++ # Copy package files COPY package.json yarn.lock ./ -# Install dependencies -RUN yarn install --frozen-lockfile +# Install dependencies (increased timeout for slow networks/ARM64 builds) +RUN yarn install --frozen-lockfile --network-timeout 600000 # Copy source code COPY . .