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