Dockerfile 1.0 KB

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. # https://googlechromelabs.github.io/chrome-for-testing/
  13. ARG CHROME_RELEASE=116.0.5845.96
  14. COPY rootfs/ /
  15. RUN apt-dpkg-wrap apt-get update && \
  16. 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 jitsi-autoscaler-sidecar jq pulseaudio dbus dbus-x11 rtkit unzip fonts-noto && \
  17. /usr/bin/install-chrome.sh && \
  18. apt-cleanup && \
  19. adduser jibri rtkit
  20. VOLUME /config