From: David Petera Date: Wed, 20 Aug 2025 16:04:37 +0000 (+0200) Subject: CI: Fix installation on newer debian-based distros X-Git-Tag: v3.1.3~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=36fa59671857a299b5d5d123f3d666bb8d8e512b;p=thirdparty%2Fbird.git CI: Fix installation on newer debian-based distros Package 'adduser' needs to be installed explicitly --- diff --git a/misc/docker/debian-testing-amd64/Dockerfile b/misc/docker/debian-testing-amd64/Dockerfile index f40e8c4fe..61ebd0d7c 100644 --- a/misc/docker/debian-testing-amd64/Dockerfile +++ b/misc/docker/debian-testing-amd64/Dockerfile @@ -15,7 +15,8 @@ RUN apt-get -y --no-install-recommends install \ texlive-latex-extra \ opensp \ docbook-xsl \ - xsltproc + xsltproc \ + adduser RUN apt-get -y --no-install-recommends install \ git \ dpkg-dev \ diff --git a/misc/docker/debian-testing-i386/Dockerfile b/misc/docker/debian-testing-i386/Dockerfile index 866738d61..4c66aa340 100644 --- a/misc/docker/debian-testing-i386/Dockerfile +++ b/misc/docker/debian-testing-i386/Dockerfile @@ -15,7 +15,8 @@ RUN apt-get -y --no-install-recommends install \ texlive-latex-extra \ opensp \ docbook-xsl \ - xsltproc + xsltproc \ + adduser RUN apt-get -y --no-install-recommends install \ git \ dpkg-dev \ diff --git a/misc/docker/ubuntu-24.04-amd64/Dockerfile b/misc/docker/ubuntu-24.04-amd64/Dockerfile index c894bb462..ee317196b 100644 --- a/misc/docker/ubuntu-24.04-amd64/Dockerfile +++ b/misc/docker/ubuntu-24.04-amd64/Dockerfile @@ -16,7 +16,8 @@ RUN apt-get -y --no-install-recommends install \ texlive-latex-extra \ opensp \ docbook-xsl \ - xsltproc + xsltproc \ + adduser RUN apt-get -y --no-install-recommends install \ git \ dpkg-dev \ diff --git a/misc/docker/ubuntu-24.10-amd64/Dockerfile b/misc/docker/ubuntu-24.10-amd64/Dockerfile index 2a01aa923..2c7df91f7 100644 --- a/misc/docker/ubuntu-24.10-amd64/Dockerfile +++ b/misc/docker/ubuntu-24.10-amd64/Dockerfile @@ -16,7 +16,8 @@ RUN apt-get -y --no-install-recommends install \ texlive-latex-extra \ opensp \ docbook-xsl \ - xsltproc + xsltproc \ + adduser RUN apt-get -y --no-install-recommends install \ git \ dpkg-dev \