From 3f512ba34a3d6d1ab0cce354dc810730a092cfc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wysoki=C5=84ski?= Date: Sat, 19 Aug 2023 09:03:16 +0200 Subject: [PATCH] fix: yarn - increase network timeout in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f03e082..7ce0b82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN apk --no-cache add shadow \ WORKDIR /usr/src/app COPY package.json yarn.lock ./ -RUN yarn +RUN yarn --network-timeout 300000 COPY . ./ ENV NODE_ENV=production