Dockerfile 379 B

123456789101112131415
  1. FROM jitsi/base
  2. RUN \
  3. apt-dpkg-wrap apt-get update && \
  4. apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web && \
  5. apt-dpkg-wrap apt-get install -y -t stretch-backports certbot && \
  6. apt-cleanup && \
  7. rm -f /etc/nginx/conf.d/default.conf && \
  8. rm -f /usr/share/jitsi-meet/interface_config.js
  9. COPY rootfs/ /
  10. EXPOSE 80 443
  11. VOLUME ["/config", "/etc/letsencrypt"]