|
|
|
@ -3,7 +3,9 @@ ARG BASE_TAG=latest |
|
|
|
|
|
|
|
|
|
FROM ${JITSI_REPO}/base:${BASE_TAG} as builder |
|
|
|
|
|
|
|
|
|
RUN apt-dpkg-wrap apt-get update && \ |
|
|
|
|
RUN <<-EOF |
|
|
|
|
set -x |
|
|
|
|
apt-dpkg-wrap apt-get update |
|
|
|
|
apt-dpkg-wrap apt-get install -y \ |
|
|
|
|
build-essential \ |
|
|
|
|
lua5.4 \ |
|
|
|
@ -11,13 +13,18 @@ RUN apt-dpkg-wrap apt-get update && \ |
|
|
|
|
libreadline-dev \ |
|
|
|
|
git \ |
|
|
|
|
unzip \ |
|
|
|
|
wget && \ |
|
|
|
|
mkdir /tmp/luarocks && \ |
|
|
|
|
wget -qO - https://luarocks.github.io/luarocks/releases/luarocks-3.8.0.tar.gz | tar xfz - --strip-components 1 -C /tmp/luarocks && \ |
|
|
|
|
cd /tmp/luarocks && ./configure && make && make install && cd - && \ |
|
|
|
|
luarocks install basexx 0.4.1-1 && \ |
|
|
|
|
luarocks install lua-cjson 2.1.0-1 && \ |
|
|
|
|
wget |
|
|
|
|
mkdir /tmp/luarocks |
|
|
|
|
wget -qO - https://luarocks.github.io/luarocks/releases/luarocks-3.8.0.tar.gz | tar xfz - --strip-components 1 -C /tmp/luarocks |
|
|
|
|
cd /tmp/luarocks |
|
|
|
|
./configure |
|
|
|
|
make |
|
|
|
|
make install |
|
|
|
|
cd - |
|
|
|
|
luarocks install basexx 0.4.1-1 |
|
|
|
|
luarocks install lua-cjson 2.1.0-1 |
|
|
|
|
luarocks install net-url 0.9-1 |
|
|
|
|
EOF |
|
|
|
|
|
|
|
|
|
FROM ${JITSI_REPO}/base:${BASE_TAG} |
|
|
|
|
|
|
|
|
@ -30,9 +37,11 @@ LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/" |
|
|
|
|
ARG VERSION_JITSI_CONTRIB_PROSODY_PLUGINS="20230803" |
|
|
|
|
ARG VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN="1.8.0" |
|
|
|
|
|
|
|
|
|
RUN wget -qO /etc/apt/trusted.gpg.d/prosody.gpg https://prosody.im/files/prosody-debian-packages.key && \ |
|
|
|
|
echo "deb http://packages.prosody.im/debian bookworm main" > /etc/apt/sources.list.d/prosody.list && \ |
|
|
|
|
apt-dpkg-wrap apt-get update && \ |
|
|
|
|
RUN <<-EOF |
|
|
|
|
set -xe |
|
|
|
|
wget -qO /etc/apt/trusted.gpg.d/prosody.gpg https://prosody.im/files/prosody-debian-packages.key |
|
|
|
|
echo "deb http://packages.prosody.im/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/prosody.list |
|
|
|
|
apt-dpkg-wrap apt-get update |
|
|
|
|
apt-dpkg-wrap apt-get install -y \ |
|
|
|
|
lua5.4 \ |
|
|
|
|
prosody \ |
|
|
|
@ -44,28 +53,29 @@ RUN wget -qO /etc/apt/trusted.gpg.d/prosody.gpg https://prosody.im/files/prosody |
|
|
|
|
lua-ldap \ |
|
|
|
|
lua-luaossl \ |
|
|
|
|
lua-sec \ |
|
|
|
|
lua-unbound && \ |
|
|
|
|
apt-dpkg-wrap apt-get -d install -y jitsi-meet-prosody && \ |
|
|
|
|
dpkg -x /var/cache/apt/archives/jitsi-meet-prosody*.deb /tmp/pkg && \ |
|
|
|
|
mv /tmp/pkg/usr/share/jitsi-meet/prosody-plugins /prosody-plugins && \ |
|
|
|
|
rm -rf /tmp/pkg /var/cache/apt && \ |
|
|
|
|
apt-cleanup && \ |
|
|
|
|
rm -rf /etc/prosody && \ |
|
|
|
|
mv /usr/share/lua/5.3/inspect.lua /usr/share/lua/5.4/ && \ |
|
|
|
|
rm -rf /usr/lib/lua/{5.1,5.2,5.3} && \ |
|
|
|
|
rm -rf /usr/share/lua/{5.1,5.2,5.3} && \ |
|
|
|
|
wget -qO /prosody-plugins/mod_auth_cyrus.lua https://hg.prosody.im/prosody-modules/raw-file/65438e4ba563/mod_auth_cyrus/mod_auth_cyrus.lua && \ |
|
|
|
|
wget -qO /prosody-plugins/sasl_cyrus.lua https://hg.prosody.im/prosody-modules/raw-file/65438e4ba563/mod_auth_cyrus/sasl_cyrus.lua && \ |
|
|
|
|
wget https://github.com/matrix-org/prosody-mod-auth-matrix-user-verification/archive/refs/tags/v$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN.tar.gz && \ |
|
|
|
|
tar -xf v$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN.tar.gz && \ |
|
|
|
|
mv prosody-mod-auth-matrix-user-verification-$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN/mod_auth_matrix_user_verification.lua /prosody-plugins && \ |
|
|
|
|
mv prosody-mod-auth-matrix-user-verification-$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN/mod_matrix_power_sync.lua /prosody-plugins && \ |
|
|
|
|
rm -rf prosody-mod-auth-matrix-user-verification-$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN v$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN.tar.gz && \ |
|
|
|
|
wget -q https://github.com/jitsi-contrib/prosody-plugins/archive/refs/tags/v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz && \ |
|
|
|
|
tar -xf v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz && \ |
|
|
|
|
mv prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS/auth_hybrid_matrix_token/mod_auth_hybrid_matrix_token.lua /prosody-plugins && \ |
|
|
|
|
mv prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS/auth_hybrid_matrix_token/mod_matrix_affiliation.lua /prosody-plugins && \ |
|
|
|
|
lua-unbound |
|
|
|
|
apt-dpkg-wrap apt-get -d install -y jitsi-meet-prosody |
|
|
|
|
dpkg -x /var/cache/apt/archives/jitsi-meet-prosody*.deb /tmp/pkg |
|
|
|
|
mv /tmp/pkg/usr/share/jitsi-meet/prosody-plugins /prosody-plugins |
|
|
|
|
rm -rf /tmp/pkg /var/cache/apt |
|
|
|
|
apt-cleanup |
|
|
|
|
rm -rf /etc/prosody |
|
|
|
|
mv /usr/share/lua/5.3/inspect.lua /usr/share/lua/5.4/ |
|
|
|
|
rm -rf /usr/lib/lua/{5.1,5.2,5.3} |
|
|
|
|
rm -rf /usr/share/lua/{5.1,5.2,5.3} |
|
|
|
|
wget -qO /prosody-plugins/mod_auth_cyrus.lua https://hg.prosody.im/prosody-modules/raw-file/65438e4ba563/mod_auth_cyrus/mod_auth_cyrus.lua |
|
|
|
|
wget -qO /prosody-plugins/sasl_cyrus.lua https://hg.prosody.im/prosody-modules/raw-file/65438e4ba563/mod_auth_cyrus/sasl_cyrus.lua |
|
|
|
|
wget https://github.com/matrix-org/prosody-mod-auth-matrix-user-verification/archive/refs/tags/v$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN.tar.gz |
|
|
|
|
tar -xf v$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN.tar.gz |
|
|
|
|
mv prosody-mod-auth-matrix-user-verification-$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN/mod_auth_matrix_user_verification.lua /prosody-plugins |
|
|
|
|
mv prosody-mod-auth-matrix-user-verification-$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN/mod_matrix_power_sync.lua /prosody-plugins |
|
|
|
|
rm -rf prosody-mod-auth-matrix-user-verification-$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN v$VERSION_MATRIX_USER_VERIFICATION_SERVICE_PLUGIN.tar.gz |
|
|
|
|
wget -q https://github.com/jitsi-contrib/prosody-plugins/archive/refs/tags/v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz |
|
|
|
|
tar -xf v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz |
|
|
|
|
mv prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS/auth_hybrid_matrix_token/mod_auth_hybrid_matrix_token.lua /prosody-plugins |
|
|
|
|
mv prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS/auth_hybrid_matrix_token/mod_matrix_affiliation.lua /prosody-plugins |
|
|
|
|
rm -rf prosody-plugins-$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS v$VERSION_JITSI_CONTRIB_PROSODY_PLUGINS.tar.gz |
|
|
|
|
EOF |
|
|
|
|
|
|
|
|
|
COPY rootfs/ / |
|
|
|
|
|
|
|
|
|