|
@@ -7,18 +7,18 @@ COPY rootfs/ /
|
|
|
|
|
|
RUN \
|
|
RUN \
|
|
apt-dpkg-wrap apt-get update && \
|
|
apt-dpkg-wrap apt-get update && \
|
|
- apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web && \
|
|
|
|
|
|
+ apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web python3-venv && \
|
|
apt-dpkg-wrap apt-get -d install -y jitsi-meet-web-config && \
|
|
apt-dpkg-wrap apt-get -d install -y jitsi-meet-web-config && \
|
|
dpkg -x /var/cache/apt/archives/jitsi-meet-web-config*.deb /tmp/pkg && \
|
|
dpkg -x /var/cache/apt/archives/jitsi-meet-web-config*.deb /tmp/pkg && \
|
|
mv /tmp/pkg/usr/share/jitsi-meet-web-config/config.js /defaults && \
|
|
mv /tmp/pkg/usr/share/jitsi-meet-web-config/config.js /defaults && \
|
|
mv /usr/share/jitsi-meet/interface_config.js /defaults && \
|
|
mv /usr/share/jitsi-meet/interface_config.js /defaults && \
|
|
- apt-cleanup && \
|
|
|
|
rm -f /etc/nginx/conf.d/default.conf && \
|
|
rm -f /etc/nginx/conf.d/default.conf && \
|
|
|
|
+ apt-cleanup && \
|
|
rm -rf /tmp/pkg /var/cache/apt
|
|
rm -rf /tmp/pkg /var/cache/apt
|
|
|
|
|
|
RUN \
|
|
RUN \
|
|
chmod a+x /usr/local/bin/certbot-auto && \
|
|
chmod a+x /usr/local/bin/certbot-auto && \
|
|
- certbot-auto --noninteractive --install-only
|
|
|
|
|
|
+ USE_PYTHON_3=1 certbot-auto --noninteractive --install-only --no-bootstrap
|
|
|
|
|
|
EXPOSE 80 443
|
|
EXPOSE 80 443
|
|
|
|
|