Dockerfile 641 B

1234567891011121314151617
  1. LABEL org.opencontainers.image.title=Jitsi Conference Focus (jicofo)
  2. LABEL org.opencontainers.image.description=Server-side focus component that manages media sessions and acts as load balancer.
  3. LABEL org.opencontainers.image.url=https://github.com/jitsi/jicofo
  4. LABEL org.opencontainers.image.source=https://github.com/jitsi/docker-jitsi-meet
  5. LABEL org.opencontainers.image.documentation=https://jitsi.github.io/handbook/
  6. ARG JITSI_REPO=jitsi
  7. ARG BASE_TAG=latest
  8. FROM ${JITSI_REPO}/base-java:${BASE_TAG}
  9. RUN apt-dpkg-wrap apt-get update && \
  10. apt-dpkg-wrap apt-get install -y jicofo && \
  11. apt-cleanup
  12. COPY rootfs/ /
  13. VOLUME /config