aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/jitsi/build/jitsi-conference-focus/Dockerfile
blob: 241c61bb63a685d748538aad98e9148a8b9ab83e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM debian:bookworm AS builder

# unzip is required when executing the mvn package command
RUN apt-get update && \
    apt-get install -y openjdk-11-jdk-headless maven git unzip

ARG JICOFO_TAG
RUN git clone --depth 1 --branch $JICOFO_TAG https://github.com/jitsi/jicofo

WORKDIR jicofo
COPY *.patch .
RUN git apply 0001-Remove-broken-command-line-args-parameters-setting.patch
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:bookworm

RUN apt-get update && \
    apt-get install -y openjdk-11-jre-headless ca-certificates

COPY --from=builder /srv/build /usr/share/jicofo
COPY jicofo /usr/local/bin

CMD ["/usr/local/bin/jicofo"]