aboutsummaryrefslogtreecommitdiff
path: root/app/jitsi/build/jitsi-meet/Dockerfile
blob: d8c7cf87439e4f7cea80e12a14453a634726a510 (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
FROM debian:bookworm AS builder

RUN apt-get update && \
    apt-get install -y curl && \
    curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
    apt-get install -y git nodejs make git unzip

ARG MEET_TAG
RUN git clone --depth 1 --branch ${MEET_TAG} https://github.com/jitsi/jitsi-meet

WORKDIR jitsi-meet
RUN npm install && \
    make

FROM debian:bookworm

COPY --from=builder /jitsi-meet /srv/jitsi-meet
RUN apt-get update && \
    apt-get install -y nginx && \
    rm /etc/nginx/sites-enabled/* && \
    rm /etc/nginx/nginx.conf

CMD ["/usr/sbin/nginx", "-g", "daemon off;"]