]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Increase yarn timeout
authorChocobozzz <me@florianbigard.com>
Mon, 6 Dec 2021 07:57:10 +0000 (08:57 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 6 Dec 2021 07:57:10 +0000 (08:57 +0100)
It can be slow when building docker using qemu

support/docker/production/Dockerfile.bullseye

index 7b2650538022468120b6452dd3d2dcab943684a5..ec06d6b1d4df12e8f9c46b9f6c017bae0643f412 100644 (file)
@@ -21,10 +21,10 @@ WORKDIR /app
 
 USER peertube
 
-RUN yarn install --pure-lockfile \
+RUN yarn install --pure-lockfile --network-timeout 600000 \
     && npm run build -- $NPM_RUN_BUILD_OPTS \
     && rm -r ./node_modules ./client/node_modules \
-    && yarn install --pure-lockfile --production \
+    && yarn install --pure-lockfile --production --network-timeout 600000 \
     && yarn cache clean
 
 USER root