You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-jitsi-meet/web/Dockerfile

19 lines
507 B

ARG JITSI_REPO=jitsi
FROM ${JITSI_REPO}/base
7 years ago
ARG JITSI_MEET_VERSION
7 years ago
RUN \
apt-dpkg-wrap apt-get update && \
apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web=1.0.${JITSI_MEET_VERSION}* && \
apt-dpkg-wrap apt-get install -y -t stretch-backports certbot && \
7 years ago
apt-cleanup && \
rm -f /etc/nginx/conf.d/default.conf && \
mkdir /defaults && \
mv /usr/share/jitsi-meet/interface_config.js /defaults/interface_config.js
7 years ago
COPY rootfs/ /
EXPOSE 80 443
VOLUME ["/config", "/etc/letsencrypt"]