]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
add ubuntu-resolute build target 16986/head
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Mon, 16 Mar 2026 13:08:30 +0000 (14:08 +0100)
committerPeter van Dijk <peter.van.dijk@powerdns.com>
Fri, 29 May 2026 10:37:41 +0000 (12:37 +0200)
drop usrmerge

builder-support/dockerfiles/Dockerfile.target.ubuntu-resolute [new file with mode: 0644]

diff --git a/builder-support/dockerfiles/Dockerfile.target.ubuntu-resolute b/builder-support/dockerfiles/Dockerfile.target.ubuntu-resolute
new file mode 100644 (file)
index 0000000..ccaec2a
--- /dev/null
@@ -0,0 +1,28 @@
+# First do the source builds
+@INCLUDE Dockerfile.target.sdist
+
+FROM ubuntu:resolute AS dist-base
+
+ARG BUILDER_CACHE_BUSTER=
+ARG APT_URL
+RUN apt-get update && apt-get -y dist-upgrade
+
+@INCLUDE Dockerfile.debbuild-prepare
+
+@IF [ -n "$M_authoritative$M_all" ]
+ADD builder-support/debian/authoritative/debian-buster/ pdns-${BUILDER_VERSION}/debian/
+@ENDIF
+
+@IF [ -n "$M_recursor$M_all" ]
+ADD builder-support/debian/recursor/debian-buster/ pdns-recursor-${BUILDER_VERSION}/debian/
+@ENDIF
+
+@IF [ -n "$M_dnsdist$M_all" ]
+ADD builder-support/debian/dnsdist/debian-bookworm/ dnsdist-${BUILDER_VERSION}/debian/
+@ENDIF
+
+@INCLUDE Dockerfile.debbuild
+
+# Do a test install and verify
+# Can be skipped with skiptests=1 in the environment
+# @EXEC [ "$skiptests" = "" ] && include Dockerfile.debtest