diff --git a/support/docker/production/Dockerfile.bullseye b/support/docker/production/Dockerfile.bullseye index ac97ddce3..77b5d96dd 100644 --- a/support/docker/production/Dockerfile.bullseye +++ b/support/docker/production/Dockerfile.bullseye @@ -16,7 +16,9 @@ WORKDIR /app USER peertube -RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \ +# Install manually client dependencies to apply our network timeout option +RUN cd client && yarn install --pure-lockfile --network-timeout 1200000 && cd ../ \ + && yarn install --pure-lockfile --network-timeout 1200000 \ && npm run build \ && rm -r ./node_modules ./client/node_modules ./client/.angular \ && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \