Dockerfile 507 B

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