Dockerfile 749 B

1234567891011121314151617181920
  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 apt-dpkg-wrap apt-get update && \
  7. apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat && \
  8. apt-dpkg-wrap apt-get -d install -y jitsi-meet-web-config && \
  9. dpkg -x /var/cache/apt/archives/jitsi-meet-web-config*.deb /tmp/pkg && \
  10. mv /tmp/pkg/usr/share/jitsi-meet-web-config/config.js /defaults && \
  11. mv /usr/share/jitsi-meet/interface_config.js /defaults && \
  12. rm -f /etc/nginx/conf.d/default.conf && \
  13. apt-cleanup && \
  14. rm -rf /tmp/pkg /var/cache/apt
  15. EXPOSE 80 443
  16. VOLUME ["/config", "/usr/share/jitsi-meet/transcripts"]