mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-10-30 07:53:33 +08:00
There is no longer a reason to downgrade GCC now that 14.2.0 is the default version on Debian unstable, and doing so started causing linking errors recently due to some system libraries (such as libyaml-cpp.so) requiring a more recent version of libc than the one used when compiling with GCC 12. GitLab: #2018 Change-Id: I19879541c4182886bcd3af5e84f0ba0d237345b6
26 lines
785 B
Plaintext
26 lines
785 B
Plaintext
FROM debian:unstable
|
|
|
|
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 \
|
|
libdbus-1-dev \
|
|
wget
|
|
|
|
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
|
|
|
|
RUN apt-get remove -y libre2-dev libre2-11
|
|
|
|
ADD extras/packaging/gnu-linux/scripts/build-package-debian.sh /opt/build-package-debian.sh
|
|
CMD ["/opt/build-package-debian.sh"]
|