From 1e49d65e8c19ceab2cafe5ce2afdbc76b77e263c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 12 Dec 2022 16:23:16 +0100 Subject: [PATCH] web: simplify build We no longer need the config package because we are building it from scratch. --- web/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 0292113..c8f1be4 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -13,13 +13,9 @@ COPY rootfs/ / RUN apt-dpkg-wrap apt-get update && \ apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq && \ - 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 && \ - mv /tmp/pkg/usr/share/jitsi-meet-web-config/config.js /defaults && \ mv /usr/share/jitsi-meet/interface_config.js /defaults && \ rm -f /etc/nginx/conf.d/default.conf && \ - apt-cleanup && \ - rm -rf /tmp/pkg /var/cache/apt + apt-cleanup EXPOSE 80 443