Dockerfile 919 B

12345678910111213141516171819202122232425
  1. LABEL org.opencontainers.image.title="Jitsi Broadcasting Infrastructure (jibri)"
  2. LABEL org.opencontainers.image.description="Components for recording and/or streaming a conference."
  3. LABEL org.opencontainers.image.url="https://github.com/jitsi/jibri"
  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 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=96.0.4664.45
  15. ARG CHROMEDRIVER_MAJOR_RELEASE=96
  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