Dockerfile 893 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. ARG TARGETPLATFORM
  10. ARG USE_CHROMIUM=0
  11. #ARG CHROME_RELEASE=latest
  12. #ARG CHROMEDRIVER_MAJOR_RELEASE=latest
  13. ARG CHROME_RELEASE=102.0.5005.61
  14. ARG CHROMEDRIVER_MAJOR_RELEASE=102
  15. COPY rootfs/ /
  16. RUN apt-dpkg-wrap apt-get update && \
  17. apt-dpkg-wrap apt-get install -y jibri libgl1-mesa-dri procps jitsi-upload-integrations jq && \
  18. /usr/bin/install-chrome.sh && \
  19. apt-cleanup
  20. VOLUME /config