Dockerfile 921 B

12345678910111213141516171819202122232425
  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 CHROME_RELEASE=latest
  13. #ARG CHROMEDRIVER_MAJOR_RELEASE=latest
  14. ARG CHROME_RELEASE=101.0.4951.41
  15. ARG CHROMEDRIVER_MAJOR_RELEASE=101
  16. COPY build/install-chrome.sh /install-chrome.sh
  17. RUN /install-chrome.sh && \
  18. rm /install-chrome.sh
  19. COPY rootfs/ /
  20. VOLUME /config