File tree 5 files changed +12
-715
lines changed 5 files changed +12
-715
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM ${JITSI_REPO}/base-java
3
3
4
4
RUN \
5
5
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 && \
7
7
apt-cleanup
8
8
9
9
COPY rootfs/ /
Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ RUN \
38
38
39
39
RUN \
40
40
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 \
44
44
&& apt-cleanup \
45
- && rm -rf /tmp/usr /var/cache/apt
45
+ && rm -rf /tmp/pkg /var/cache/apt
46
46
47
47
RUN \
48
48
sed -i s/hook/hook_global/g /prosody-plugins/mod_auth_token.lua \
Original file line number Diff line number Diff line change 1
1
ARG JITSI_REPO=jitsi
2
2
FROM ${JITSI_REPO}/base
3
3
4
+ COPY rootfs/ /
5
+
4
6
RUN \
5
7
apt-dpkg-wrap apt-get update && \
6
8
apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web && \
7
9
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 && \
8
14
apt-cleanup && \
9
15
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
13
17
14
18
EXPOSE 80 443
15
19
You can’t perform that action at this time.
0 commit comments