FROM debian:bullseye ENV DEBIAN_FRONTEND=noninteractive RUN apt-get clean RUN apt-get update && \ apt-get install -y -o Acquire::Retries=10 \ devscripts \ equivs \ python-is-python3 \ wget \ curl # nodejs RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - RUN apt install nodejs -y ADD extras/packaging/gnu-linux/scripts/prebuild-package-debian.sh /opt/prebuild-package-debian.sh COPY extras/packaging/gnu-linux/rules/debian-qt/control /tmp/builddeps/debian/control RUN /opt/prebuild-package-debian.sh qt-deps COPY extras/packaging/gnu-linux/rules/debian/control /tmp/builddeps/debian/control RUN /opt/prebuild-package-debian.sh jami-deps # Install CMake 3.21 for Qt 6 ADD extras/packaging/gnu-linux/scripts/install-cmake.sh /opt/install-cmake.sh RUN /opt/install-cmake.sh ADD extras/packaging/gnu-linux/scripts/build-package-debian.sh /opt/build-package-debian.sh # Setting this variable so that FFmpeg gets built without pipewiregrab # (see daemon/contrib/bootstrap and daemon/contrib/src/ffmpeg/rules.mak) # We rely on PipeWire for screen sharing on Wayland, but the version available on Debian 11 is too old. ENV DISABLE_PIPEWIRE=true CMD ["/opt/build-package-debian.sh"]