From: Pieter Lexis Date: Fri, 5 Oct 2018 07:46:32 +0000 (+0200) Subject: Add Ubuntu Cosmic Cuttlefish build target X-Git-Tag: dnsdist-1.3.3~21^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1aa17c26adcf0df3ae5b6f2bc23be7e8703c434d;p=thirdparty%2Fpdns.git Add Ubuntu Cosmic Cuttlefish build target --- diff --git a/builder-support/dockerfiles/Dockerfile.target.ubuntu-cosmic b/builder-support/dockerfiles/Dockerfile.target.ubuntu-cosmic new file mode 100644 index 0000000000..f13c7d1ef6 --- /dev/null +++ b/builder-support/dockerfiles/Dockerfile.target.ubuntu-cosmic @@ -0,0 +1,26 @@ +# First do the source builds +@INCLUDE Dockerfile.target.sdist + +FROM ubuntu:cosmic as dist-base +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-stretch/ pdns-${BUILDER_VERSION}/debian/ +@ENDIF + +@IF [ ! -z "$M_recursor" ] +ADD builder-support/debian/recursor/debian-stretch/ pdns-recursor-${BUILDER_VERSION}/debian/ +@ENDIF + +@IF [ ! -z "$M_dnsdist" ] +ADD builder-support/debian/dnsdist/debian-stretch/ 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