Upgrade jitsi build recipes to 9646 #34

Merged
quentin merged 3 commits from 2024-09-12-update-jitsi into main 2024-09-12 18:05:14 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 9742ec34da - Show all commits

View file

@ -7,6 +7,7 @@ services:
args:
# https://github.com/jitsi/jitsi-meet
MEET_TAG: stable/jitsi-meet_9646
NODE_MAJOR_VERSION: 22
image: superboum/amd64_jitsi_meet:v7
jitsi-conference-focus:

View file

@ -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_22.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