You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
698 B
17 lines
698 B
ARG JITSI_REPO=jitsi
|
|
ARG BASE_TAG=latest
|
|
FROM ${JITSI_REPO}/base-java:${BASE_TAG}
|
|
|
|
LABEL org.opencontainers.image.title="Jitsi Videobridge (jvb)"
|
|
LABEL org.opencontainers.image.description="WebRTC compatible server designed to route video streams amongst participants in a conference."
|
|
LABEL org.opencontainers.image.url="https://jitsi.org/jitsi-videobridge/"
|
|
LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
|
|
LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
|
|
|
|
RUN apt-dpkg-wrap apt-get update && \
|
|
apt-dpkg-wrap apt-get install -y jitsi-videobridge2 jq curl iproute2 dnsutils && \
|
|
apt-cleanup
|
|
|
|
COPY rootfs/ /
|
|
|
|
VOLUME /config
|
|
|