Dockerfile 734 B

123456789101112131415161718192021
  1. ARG JITSI_REPO=jitsi
  2. ARG BASE_TAG=latest
  3. FROM ${JITSI_REPO}/base:${BASE_TAG}
  4. ADD https://raw.githubusercontent.com/acmesh-official/acme.sh/2.8.8/acme.sh /opt
  5. COPY rootfs/ /
  6. RUN \
  7. apt-dpkg-wrap apt-get update && \
  8. apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat && \
  9. apt-dpkg-wrap apt-get -d install -y jitsi-meet-web-config && \
  10. dpkg -x /var/cache/apt/archives/jitsi-meet-web-config*.deb /tmp/pkg && \
  11. mv /tmp/pkg/usr/share/jitsi-meet-web-config/config.js /defaults && \
  12. mv /usr/share/jitsi-meet/interface_config.js /defaults && \
  13. rm -f /etc/nginx/conf.d/default.conf && \
  14. apt-cleanup && \
  15. rm -rf /tmp/pkg /var/cache/apt
  16. EXPOSE 80 443
  17. VOLUME ["/config", "/usr/share/jitsi-meet/transcripts"]