This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/docker/jitsi/jitsi-videobridge/Dockerfile

16 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