Dockerfile 445 B

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