diff options
author | Chocobozzz <me@florianbigard.com> | 2022-01-03 11:01:39 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-01-03 14:20:56 +0100 |
commit | b18a501a0ee898aeb2e34b92de61e682a1894547 (patch) | |
tree | 2984c5b9e341c3433dd639d07cc6d250776dbae6 /support/docker | |
parent | cc4bf76c13e38e9065d49161b6e0485657424577 (diff) | |
download | PeerTube-b18a501a0ee898aeb2e34b92de61e682a1894547.tar.gz PeerTube-b18a501a0ee898aeb2e34b92de61e682a1894547.tar.zst PeerTube-b18a501a0ee898aeb2e34b92de61e682a1894547.zip |
Try to fix docker build
Diffstat (limited to 'support/docker')
-rw-r--r-- | support/docker/production/Dockerfile.bullseye | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/docker/production/Dockerfile.bullseye b/support/docker/production/Dockerfile.bullseye index ec0e30e47..6cb1a4e5f 100644 --- a/support/docker/production/Dockerfile.bullseye +++ b/support/docker/production/Dockerfile.bullseye | |||
@@ -21,10 +21,10 @@ WORKDIR /app | |||
21 | 21 | ||
22 | USER peertube | 22 | USER peertube |
23 | 23 | ||
24 | RUN yarn install --pure-lockfile --network-timeout 1200000 \ | 24 | RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \ |
25 | && npm run build -- $NPM_RUN_BUILD_OPTS \ | 25 | && npm run build -- $NPM_RUN_BUILD_OPTS \ |
26 | && rm -r ./node_modules ./client/node_modules \ | 26 | && rm -r ./node_modules ./client/node_modules \ |
27 | && yarn install --pure-lockfile --production --network-timeout 1200000 \ | 27 | && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \ |
28 | && yarn cache clean | 28 | && yarn cache clean |
29 | 29 | ||
30 | USER root | 30 | USER root |