diff options
Diffstat (limited to 'support/docker/production/Dockerfile.bullseye')
-rw-r--r-- | support/docker/production/Dockerfile.bullseye | 7 |
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 @@ | |||
1 | FROM node:14-bullseye-slim | 1 | FROM 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) | ||
6 | ARG NPM_RUN_BUILD_OPTS | ||
7 | |||
8 | # Install dependencies | 3 | # Install dependencies |
9 | RUN apt update \ | 4 | RUN 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 | |||
22 | USER peertube | 17 | USER peertube |
23 | 18 | ||
24 | RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \ | 19 | RUN 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 |