From b0279f24f85a82c507a74e3e7822581e3803b159 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 22 Jun 2020 16:15:13 +0200 Subject: [PATCH] Increase network timeout when building docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 111aeb79d..c8d8c4298 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY . ./ RUN \ # Build the frontend - yarn install --frozen-lockfile && \ + yarn install --frozen-lockfile --network-timeout 100000 && \ echo '{"VERSION": "'$(git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')'"}' > src/version.json && \ yarn run build