aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-01-06 10:37:49 +0100
committerChocobozzz <me@florianbigard.com>2022-01-06 10:37:55 +0100
commit75b7117f078461d2507572ba9da6527894e1b734 (patch)
treecbf0882c7a525717552fe0033f8b60ed244e82bd /support
parentf8360396ffabd2f95e9ece9c5755173bae0114b6 (diff)
downloadPeerTube-75b7117f078461d2507572ba9da6527894e1b734.tar.gz
PeerTube-75b7117f078461d2507572ba9da6527894e1b734.tar.zst
PeerTube-75b7117f078461d2507572ba9da6527894e1b734.zip
Remove unnecessary NPM_RUN_BUILD_OPTS docker arg
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