Dockerfile 1.0 KB

1234567891011121314151617181920212223242526
  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=104.0.5112.79
  14. ARG CHROMEDRIVER_MAJOR_RELEASE=104
  15. COPY rootfs/ /
  16. RUN apt-dpkg-wrap apt-get update && \
  17. apt-dpkg-wrap apt-get install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" jibri libgl1-mesa-dri procps jitsi-upload-integrations jq pulseaudio dbus dbus-x11 rtkit && \
  18. /usr/bin/install-chrome.sh && \
  19. apt-cleanup && \
  20. adduser jibri rtkit
  21. VOLUME /config