jitsi-deployment/web/Dockerfile

16 lines
379 B
Docker
Raw Normal View History

2018-03-14 10:23:13 +01:00
FROM jitsi/base
RUN \
apt-dpkg-wrap apt-get update && \
2018-11-07 11:23:08 +01:00
apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web && \
apt-dpkg-wrap apt-get install -y -t stretch-backports certbot && \
2018-03-14 10:23:13 +01:00
apt-cleanup && \
rm -f /etc/nginx/conf.d/default.conf && \
rm -f /usr/share/jitsi-meet/interface_config.js
2018-03-14 10:23:13 +01:00
COPY rootfs/ /
EXPOSE 80 443
2019-07-08 20:32:40 +02:00
VOLUME ["/config", "/etc/letsencrypt"]