From 346881e92eaca356a3786a5e7e363c96f6a1af96 Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Tue, 21 May 2024 15:46:14 +1000 Subject: [PATCH] increase yarn timeout --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e5dd783e..9497f9ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,7 @@ FROM uselagoon/node-20-builder:latest as builder COPY . /app/ -RUN yarn install - +RUN yarn install --network-timeout 1000000 # Node service image FROM uselagoon/node-20:latest @@ -28,4 +27,4 @@ ENV GRAPHQL_API=$GRAPHQL_API RUN yarn run build EXPOSE 3000 -CMD ["yarn", "start"] \ No newline at end of file +CMD ["yarn", "start"]