aboutsummaryrefslogtreecommitdiff
path: root/docker/jitsi/jitsi-videobridge/Dockerfile
blob: 7216b8ce63ef137f05036083722213c190ec56ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM debian:buster AS builder

RUN apt-get update && \
    apt-get install -y wget unzip

ENV VERSION=1132
RUN wget https://download.jitsi.org/jitsi-videobridge/linux/jitsi-videobridge-linux-x64-${VERSION}.zip -O jvb.zip && \
    unzip jvb.zip && \
    mv jitsi-videobridge-linux-x64-${VERSION} jvb

FROM debian:buster

RUN apt-get update && \
    apt-get install -y