Dockerfile 958 B

12345678910111213141516171819202122
  1. ARG JITSI_REPO=jitsi
  2. ARG BASE_TAG=latest
  3. FROM ${JITSI_REPO}/base:${BASE_TAG}
  4. LABEL org.opencontainers.image.title="Jitsi Meet"
  5. LABEL org.opencontainers.image.description="WebRTC compatible JavaScript application that uses Jitsi Videobridge to provide high quality, scalable video conferences."
  6. LABEL org.opencontainers.image.url="https://jitsi.org/jitsi-meet/"
  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. ADD https://raw.githubusercontent.com/acmesh-official/acme.sh/3.0.7/acme.sh /opt
  10. COPY rootfs/ /
  11. RUN apt-dpkg-wrap apt-get update && \
  12. apt-dpkg-wrap apt-get install -y dnsutils cron nginx-extras jitsi-meet-web socat curl jq && \
  13. mv /usr/share/jitsi-meet/interface_config.js /defaults && \
  14. rm -f /etc/nginx/conf.d/default.conf && \
  15. apt-cleanup
  16. EXPOSE 80 443
  17. VOLUME ["/config", "/usr/share/jitsi-meet/transcripts"]