diff options
Diffstat (limited to 'app/jitsi/build')
6 files changed, 50 insertions, 41 deletions
diff --git a/app/jitsi/build/jitsi-conference-focus/Dockerfile b/app/jitsi/build/jitsi-conference-focus/Dockerfile index 13e99be..241c61b 100644 --- a/app/jitsi/build/jitsi-conference-focus/Dockerfile +++ b/app/jitsi/build/jitsi-conference-focus/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:buster AS builder +FROM debian:bookworm AS builder # unzip is required when executing the mvn package command RUN apt-get update && \ @@ -15,7 +15,7 @@ RUN mvn package -DskipTests -Dassembly.skipAssembly=false RUN unzip target/jicofo-1.1-SNAPSHOT-archive.zip && \ mv jicofo-1.1-SNAPSHOT /srv/build -FROM debian:buster +FROM debian:bookworm RUN apt-get update && \ apt-get install -y openjdk-11-jre-headless ca-certificates diff --git a/app/jitsi/build/jitsi-meet/Dockerfile b/app/jitsi/build/jitsi-meet/Dockerfile index b74c04e..d8c7cf8 100644 --- a/app/jitsi/build/jitsi-meet/Dockerfile +++ b/app/jitsi/build/jitsi-meet/Dockerfile @@ -1,8 +1,8 @@ -FROM debian:buster AS builder +FROM debian:bookworm AS builder RUN apt-get update && \ apt-get install -y curl && \ - curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ apt-get install -y git nodejs make git unzip ARG MEET_TAG @@ -12,7 +12,7 @@ WORKDIR jitsi-meet RUN npm install && \ make -FROM debian:buster +FROM debian:bookworm COPY --from=builder /jitsi-meet /srv/jitsi-meet RUN apt-get update && \ diff --git a/app/jitsi/build/jitsi-videobridge/0001-Disable-legacy-parameters.patch b/app/jitsi/build/jitsi-videobridge/0001-Disable-legacy-parameters.patch deleted file mode 100644 index 69b83c0..0000000 --- a/app/jitsi/build/jitsi-videobridge/0001-Disable-legacy-parameters.patch +++ /dev/null @@ -1,31 +0,0 @@ -From b327e580ab83110cdb52bc1d11687a096b8fc1df Mon Sep 17 00:00:00 2001 -From: Quentin Dufour <quentin@dufour.io> -Date: Mon, 1 Feb 2021 07:16:50 +0100 -Subject: [PATCH] Disable legacy parameters - ---- - jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt | 8 -------- - 1 file changed, 8 deletions(-) - -diff --git a/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt b/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt -index df71f480..8f0ef9a5 100644 ---- a/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt -+++ b/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt -@@ -62,14 +62,6 @@ fun main(args: Array<String>) { - // to be passed. - System.setProperty("org.eclipse.jetty.util.log.class", "org.eclipse.jetty.util.log.JavaUtilLog") - -- // Before initializing the application programming interfaces (APIs) of -- // Jitsi Videobridge, set any System properties which they use and which -- // may be specified by the command-line arguments. -- System.setProperty( -- Videobridge.REST_API_PNAME, -- cmdLine.getOptionValue("--apis").contains(Videobridge.REST_API).toString() -- ) -- - // Reload the Typesafe config used by ice4j, because the original was initialized before the new system - // properties were set. - JitsiConfig.reloadNewConfig() --- -2.25.1 - diff --git a/app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch b/app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch new file mode 100644 index 0000000..575d93f --- /dev/null +++ b/app/jitsi/build/jitsi-videobridge/0001-Remove-deprecated-argument.patch @@ -0,0 +1,40 @@ +From 01507442620e5a57624c921b508eac7d572440d0 Mon Sep 17 00:00:00 2001 +From: Quentin Dufour <quentin@deuxfleurs.fr> +Date: Tue, 25 Jan 2022 14:46:22 +0100 +Subject: [PATCH] Remove deprecated argument + +--- + .../main/kotlin/org/jitsi/videobridge/Main.kt | 17 ----------------- + 1 file changed, 17 deletions(-) + +diff --git a/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt b/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt +index 4f6cb78..3db00f2 100644 +--- a/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt ++++ b/jvb/src/main/kotlin/org/jitsi/videobridge/Main.kt +@@ -52,23 +52,6 @@ import org.jitsi.videobridge.websocket.singleton as webSocketServiceSingleton + fun main(args: Array<String>) { + val logger = LoggerImpl("org.jitsi.videobridge.Main") + +- // We only support command line arguments for backward compatibility. The --apis options is the last one supported, +- // and it is only used to enable/disable the REST API (XMPP is only controlled through the config files). +- // TODO: fully remove support for --apis +- CmdLine().apply { +- parse(args) +- getOptionValue("--apis")?.let { +- logger.warn( +- "A deprecated command line argument (--apis) is present. Please use the config file to control the " + +- "REST API instead (see rest.md). Support for --apis will be removed in a future version." +- ) +- System.setProperty( +- Videobridge.REST_API_PNAME, +- it.contains(Videobridge.REST_API).toString() +- ) +- } +- } +- + setupMetaconfigLogger() + + setSystemPropertyDefaults() +-- +2.33.1 + diff --git a/app/jitsi/build/jitsi-videobridge/Dockerfile b/app/jitsi/build/jitsi-videobridge/Dockerfile index 2a32946..254f220 100644 --- a/app/jitsi/build/jitsi-videobridge/Dockerfile +++ b/app/jitsi/build/jitsi-videobridge/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:buster AS builder +FROM debian:bookworm AS builder RUN apt-get update && \ apt-get install -y git unzip maven openjdk-11-jdk-headless @@ -8,12 +8,12 @@ RUN git clone --depth 1 --branch ${JVB_TAG} https://github.com/jitsi/jitsi-video WORKDIR jitsi-videobridge COPY *.patch . -RUN git apply 0001-Disable-legacy-parameters.patch +RUN git apply 0001-Remove-deprecated-argument.patch RUN mvn package -DskipTests RUN unzip jvb/target/jitsi-videobridge*.zip && \ mv jitsi-videobridge-*-SNAPSHOT build -FROM debian:buster +FROM debian:bookworm RUN apt-get update && \ apt-get install -y openjdk-11-jre-headless curl diff --git a/app/jitsi/build/jitsi-xmpp/Dockerfile b/app/jitsi/build/jitsi-xmpp/Dockerfile index 80b89f0..a060fda 100644 --- a/app/jitsi/build/jitsi-xmpp/Dockerfile +++ b/app/jitsi/build/jitsi-xmpp/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:buster as builder +FROM debian:bookworm as builder RUN apt-get update && \ apt-get install -y git unzip @@ -6,7 +6,7 @@ RUN apt-get update && \ ARG MEET_TAG RUN git clone --depth 1 --branch ${MEET_TAG} https://github.com/jitsi/jitsi-meet/ -FROM debian:buster +FROM debian:bookworm ARG PROSODY_VERSION RUN apt-get update && \ |