From bb5547402b08218c6a669de7c6b1c3ad7aab3b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 12 Sep 2019 11:49:56 -0400 Subject: [PATCH] Increase network timeout so that DockerHub builds won't fail --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6908dc..2f695ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,6 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg |\ WORKDIR /srv COPY . /srv -RUN yarn install --frozen-lockfile && yarn build --no-progress +RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn build --no-progress CMD yarn start