From: Pieter Lexis Date: Mon, 27 Aug 2018 08:46:58 +0000 (+0200) Subject: Remove ubuntu artful from targets X-Git-Tag: dnsdist-1.3.3~83^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8a8b5b80509266c55e6ad713277a13a767169e8;p=thirdparty%2Fpdns.git Remove ubuntu artful from targets --- diff --git a/builder-support/dockerfiles/Dockerfile.target.ubuntu-artful b/builder-support/dockerfiles/Dockerfile.target.ubuntu-artful deleted file mode 100644 index 8be7ea6724..0000000000 --- a/builder-support/dockerfiles/Dockerfile.target.ubuntu-artful +++ /dev/null @@ -1,26 +0,0 @@ -# First do the source builds -@INCLUDE Dockerfile.target.sdist - -FROM ubuntu:artful 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