Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion builder-support/debian/dnsdist/debian-bookworm/control
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ Maintainer: PowerDNS.COM BV <powerdns.support.sales@powerdns.com>
Uploaders: PowerDNS.COM BV <powerdns.support.sales@powerdns.com>
Build-Depends: debhelper (>= 10),
clang,
libboost-all-dev,
libboost-dev,
libboost-container-dev,
libboost-test-dev,
libbpf-dev [linux-any],
libcap-dev,
libcdb-dev,
Expand Down
2 changes: 1 addition & 1 deletion builder-support/dockerfiles/Dockerfile.authoritative
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.21 AS pdns-authoritative
FROM alpine:3.23 AS pdns-authoritative
ARG BUILDER_CACHE_BUSTER=

RUN apk add --no-cache gcc g++ make tar autoconf automake protobuf-dev lua-dev \
Expand Down
2 changes: 1 addition & 1 deletion builder-support/dockerfiles/Dockerfile.dnsdist
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.21 AS dnsdist
FROM alpine:3.23 AS dnsdist
ARG BUILDER_CACHE_BUSTER=

RUN apk add --no-cache gcc g++ make tar autoconf automake protobuf-dev lua-dev \
Expand Down
2 changes: 1 addition & 1 deletion builder-support/dockerfiles/Dockerfile.recursor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.21 AS pdns-recursor
FROM alpine:3.23 AS pdns-recursor
ARG BUILDER_CACHE_BUSTER=

RUN apk add --no-cache gcc g++ make tar autoconf automake protobuf-dev lua-dev \
Expand Down
2 changes: 1 addition & 1 deletion builder-support/dockerfiles/Dockerfile.target.sdist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@INCLUDE Dockerfile.dnsdist
@ENDIF

FROM alpine:3.21 AS sdist
FROM alpine:3.23 AS sdist
ARG BUILDER_CACHE_BUSTER=

@IF [ -z "$M_authoritative$M_recursor$M_dnsdist$M_all" ]
Expand Down
28 changes: 28 additions & 0 deletions builder-support/dockerfiles/Dockerfile.target.ubuntu-resolute
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions builder-support/helpers/meson.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "1.7.0",
"version": "1.11.1",
"license": "Apache-2.0",
"publisher": "https://github.com/mesonbuild/meson",
"SHA256SUM": "a6ca46e2a11a0278bb6492ecd4e0520ff441b164ebfdef1e012b11beb848d26e"
"SHA256SUM": "1a2219422be4a66ad0e8daed125c2a3d5c963458e289203eae22edf3224f5d3e"
}
Loading