aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-01-03 11:01:39 +0100
committerChocobozzz <me@florianbigard.com>2022-01-03 14:20:56 +0100
commitb18a501a0ee898aeb2e34b92de61e682a1894547 (patch)
tree2984c5b9e341c3433dd639d07cc6d250776dbae6 /support
parentcc4bf76c13e38e9065d49161b6e0485657424577 (diff)
downloadPeerTube-b18a501a0ee898aeb2e34b92de61e682a1894547.tar.gz
PeerTube-b18a501a0ee898aeb2e34b92de61e682a1894547.tar.zst
PeerTube-b18a501a0ee898aeb2e34b92de61e682a1894547.zip
Try to fix docker build
Diffstat (limited to 'support')
-rw-r--r--support/docker/production/Dockerfile.bullseye4
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
22USER peertube 22USER peertube
23 23
24RUN yarn install --pure-lockfile --network-timeout 1200000 \ 24RUN 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
30USER root 30USER root