diff options
author | Quentin <quentin@dufour.io> | 2024-09-12 18:05:14 +0000 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2024-09-12 18:05:14 +0000 |
commit | e81a6ccff028392f8d654345774f5029486b6175 (patch) | |
tree | 57726fde2a08889abdaea9212a96988f54b87349 /cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile | |
parent | dabfbc981b46d3bac20622b51a56a7c6568b6718 (diff) | |
parent | 8ca33f31366dbbbb37c9bea54ac4fc47d3122fae (diff) | |
download | nixcfg-e81a6ccff028392f8d654345774f5029486b6175.tar.gz nixcfg-e81a6ccff028392f8d654345774f5029486b6175.zip |
Merge pull request 'Upgrade jitsi build recipes to 9646' (#34) from 2024-09-12-update-jitsi into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/nixcfg/pulls/34
Diffstat (limited to 'cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile')
-rw-r--r-- | cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile b/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile index 2e629e9..32081a2 100644 --- a/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile +++ b/cluster/prod/app/jitsi/build/jitsi-meet/Dockerfile @@ -1,8 +1,9 @@ FROM debian:bookworm AS builder +ARG NODE_MAJOR_VERSION RUN apt-get update && \ apt-get install -y curl && \ - curl -sL https://deb.nodesource.com/setup_19.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_${NODE_MAJOR_VERSION}.x | bash - && \ apt-get install -y git nodejs make git unzip ARG MEET_TAG |