From ec11b53a077a82030aa42db354804d83247a7ecf Mon Sep 17 00:00:00 2001 From: cleitonper Date: Tue, 1 Jan 2019 14:31:37 -0200 Subject: [PATCH] fix: added --network-concurrency to yarn install script --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 410d4ef..f3e932f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,8 @@ RUN npm config set scripts-prepend-node-path true RUN yarn global add pm2@latest # Install project dependencies -RUN npm install +# See yarn issue #6312 +RUN yarn install --network-concurrency 1 # Set 8000 as container port EXPOSE 8000