aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/docker/production/Dockerfile.bullseye7
1 files changed, 1 insertions, 6 deletions
diff --git a/support/docker/production/Dockerfile.bullseye b/support/docker/production/Dockerfile.bullseye
index eacf6aca1..ac97ddce3 100644
--- a/support/docker/production/Dockerfile.bullseye
+++ b/support/docker/production/Dockerfile.bullseye
@@ -1,10 +1,5 @@
1FROM node:14-bullseye-slim 1FROM node:14-bullseye-slim
2 2
3# Allow to pass extra options to the npm run build
4# eg: --light --light-fr to not build all client languages
5# (speed up build time if i18n is not required)
6ARG NPM_RUN_BUILD_OPTS
7
8# Install dependencies 3# Install dependencies
9RUN apt update \ 4RUN apt update \
10 && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential curl \ 5 && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential curl \
@@ -22,7 +17,7 @@ WORKDIR /app
22USER peertube 17USER peertube
23 18
24RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \ 19RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \
25 && npm run build -- $NPM_RUN_BUILD_OPTS \ 20 && npm run build \
26 && rm -r ./node_modules ./client/node_modules ./client/.angular \ 21 && rm -r ./node_modules ./client/node_modules ./client/.angular \
27 && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \ 22 && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
28 && yarn cache clean 23 && yarn cache clean