2
0

Dockerfile 959 B

123456789101112131415161718192021222324252627
  1. ARG JITSI_REPO=jitsi
  2. ARG BASE_TAG=latest
  3. FROM ${JITSI_REPO}/base-java:${BASE_TAG}
  4. LABEL org.opencontainers.image.title="Jitsi Broadcasting Infrastructure (jibri)"
  5. LABEL org.opencontainers.image.description="Components for recording and/or streaming a conference."
  6. LABEL org.opencontainers.image.url="https://github.com/jitsi/jibri"
  7. LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
  8. LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
  9. RUN apt-dpkg-wrap apt-get update && \
  10. apt-dpkg-wrap apt-get install -y jibri libgl1-mesa-dri procps jitsi-upload-integrations jq && \
  11. apt-cleanup
  12. ARG TARGETPLATFORM
  13. ARG USE_CHROMIUM=0
  14. #ARG CHROME_RELEASE=latest
  15. #ARG CHROMEDRIVER_MAJOR_RELEASE=latest
  16. ARG CHROME_RELEASE=102.0.5005.61
  17. ARG CHROMEDRIVER_MAJOR_RELEASE=102
  18. COPY build/install-chrome.sh /install-chrome.sh
  19. RUN /install-chrome.sh && \
  20. rm /install-chrome.sh
  21. COPY rootfs/ /
  22. VOLUME /config