From: Pieter Lexis Date: Mon, 18 Dec 2017 09:05:11 +0000 (+0100) Subject: Add Raspbian Stretch builder X-Git-Tag: dnsdist-1.3.3~83^2~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73b8c4a98eef68a06745bf1eef6beed68e1b72eb;p=thirdparty%2Fpdns.git Add Raspbian Stretch builder --- diff --git a/builder-support/dockerfiles/Dockerfile.target.raspbian-stretch b/builder-support/dockerfiles/Dockerfile.target.raspbian-stretch new file mode 100644 index 0000000000..511a20bb9e --- /dev/null +++ b/builder-support/dockerfiles/Dockerfile.target.raspbian-stretch @@ -0,0 +1,16 @@ +# First do the source builds +@INCLUDE Dockerfile.target.sdist + +FROM resin/rpi-raspbian:stretch as dist-base +ARG APT_URL +RUN apt-get update && apt-get -y dist-upgrade + +@INCLUDE Dockerfile.debbuild-prepare + +ADD builder-support/debian/debian-stretch/ pdns-${BUILDER_VERSION}/debian/ + +@INCLUDE Dockerfile.debbuild + +# Do a test install and verify +# Can be skipped with skiptests=1 in the environment +# @EXEC [ "$skiptests" = "" ] && include Dockerfile.debtest