Dockerfile 1.3 KB

12345678910111213141516171819202122232425262728293031
  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. case ${TARGETPLATFORM} in \
  21. "linux/amd64") SC_ARCH=x86_64 ;; \
  22. "linux/arm64") SC_ARCH=aarch64 ;; \
  23. esac && \
  24. wget -qO /usr/bin/shm-check https://github.com/saghul/shm-check/releases/download/v1.0.0/shm-check-${SC_ARCH} && \
  25. chmod +x /usr/bin/shm-check
  26. VOLUME /config