From 28e9eabc1a09f941741de60711d3041f3ff80e09 Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Tue, 12 Nov 2024 11:25:02 -0500 Subject: [PATCH] network-timeout --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc608c8..3bc31a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN /root/.cargo/bin/uv pip install --no-cache -r requirements.txt FROM node:16 AS frontend WORKDIR /app COPY frontend/package.json frontend/yarn.lock ./frontend/ -RUN cd frontend && yarn install +RUN cd frontend && yarn install --network-timeout 500000 COPY frontend ./frontend RUN cd frontend && yarn build