forked from Deuxfleurs/infrastructure
15 lines
369 B
Docker
15 lines
369 B
Docker
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
|
|
|