From: Pieter Lexis Date: Wed, 24 Apr 2019 12:41:05 +0000 (+0200) Subject: Support building Ubuntu Disco Dingo packages X-Git-Tag: dnsdist-1.4.0-alpha2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F7737%2Fhead;p=thirdparty%2Fpdns.git Support building Ubuntu Disco Dingo packages --- diff --git a/builder-support/dockerfiles/Dockerfile.target.ubuntu-disco b/builder-support/dockerfiles/Dockerfile.target.ubuntu-disco new file mode 100644 index 0000000000..b3115e46c9 --- /dev/null +++ b/builder-support/dockerfiles/Dockerfile.target.ubuntu-disco @@ -0,0 +1,27 @@ +# First do the source builds +@INCLUDE Dockerfile.target.sdist + +FROM ubuntu:disco as dist-base +ARG BUILDER_CACHE_BUSTER= +ARG APT_URL +RUN apt-get update && apt-get -y dist-upgrade + +@INCLUDE Dockerfile.debbuild-prepare + +@IF [ ! -z "$M_authoritative" ] +ADD builder-support/debian/authoritative/debian-buster/ pdns-${BUILDER_VERSION}/debian/ +@ENDIF + +@IF [ ! -z "$M_recursor" ] +ADD builder-support/debian/recursor/debian-buster/ pdns-recursor-${BUILDER_VERSION}/debian/ +@ENDIF + +@IF [ ! -z "$M_dnsdist" ] +ADD builder-support/debian/dnsdist/debian-buster/ 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