Skip to content

Commit 655cf6b

Browse files
committed
web,prosody,jvb: prepare for new stable release
1 parent ebb4536 commit 655cf6b

File tree

5 files changed

+12
-715
lines changed

5 files changed

+12
-715
lines changed

jvb/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ${JITSI_REPO}/base-java
33

44
RUN \
55
apt-dpkg-wrap apt-get update && \
6-
apt-dpkg-wrap apt-get install -y jitsi-videobridge && \
6+
apt-dpkg-wrap apt-get install -y jitsi-videobridge2 && \
77
apt-cleanup
88

99
COPY rootfs/ /

prosody/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ RUN \
3838

3939
RUN \
4040
apt-dpkg-wrap apt-get update \
41-
&& apt-dpkg-wrap apt-get -d install -y jitsi-meet-tokens \
42-
&& dpkg -x /var/cache/apt/archives/jitsi-meet-tokens*.deb /tmp \
43-
&& mv /tmp/usr/share/jitsi-meet/prosody-plugins /prosody-plugins \
41+
&& apt-dpkg-wrap apt-get -d install -y jitsi-meet-prosody \
42+
&& dpkg -x /var/cache/apt/archives/jitsi-meet-prosody*.deb /tmp/pkg \
43+
&& mv /tmp/pkg/usr/share/jitsi-meet/prosody-plugins /prosody-plugins \
4444
&& apt-cleanup \
45-
&& rm -rf /tmp/usr /var/cache/apt
45+
&& rm -rf /tmp/pkg /var/cache/apt
4646

4747
RUN \
4848
sed -i s/hook/hook_global/g /prosody-plugins/mod_auth_token.lua \

web/Dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
ARG JITSI_REPO=jitsi
22
FROM ${JITSI_REPO}/base
33

4+
COPY rootfs/ /
5+
46
RUN \
57
apt-dpkg-wrap apt-get update && \
68
apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web && \
79
apt-dpkg-wrap apt-get install -y -t stretch-backports certbot && \
10+
apt-dpkg-wrap apt-get -d install -y jitsi-meet-web-config && \
11+
dpkg -x /var/cache/apt/archives/jitsi-meet-web-config*.deb /tmp/pkg && \
12+
mv /tmp/pkg/usr/share/jitsi-meet-web-config/config.js /defaults && \
13+
mv /usr/share/jitsi-meet/interface_config.js /defaults && \
814
apt-cleanup && \
915
rm -f /etc/nginx/conf.d/default.conf && \
10-
rm -f /usr/share/jitsi-meet/interface_config.js
11-
12-
COPY rootfs/ /
16+
rm -rf /tmp/pkg /var/cache/apt
1317

1418
EXPOSE 80 443
1519

0 commit comments

Comments
 (0)