]> git.ipfire.org Git - thirdparty/pdns.git/blob - builder-support/dockerfiles/Dockerfile.target.ubuntu-trusty
Merge pull request #7320 from pieterlexis/auth-lower-udp-trunc
[thirdparty/pdns.git] / builder-support / dockerfiles / Dockerfile.target.ubuntu-trusty
1 # First do the source builds
2 @INCLUDE Dockerfile.target.sdist
3
4 FROM ubuntu:trusty as dist-base
5 ARG APT_URL
6 RUN apt-get update && apt-get -y dist-upgrade
7
8 @INCLUDE Dockerfile.debbuild-prepare
9
10 @IF [ ! -z "$M_authoritative" ]
11 ADD builder-support/debian/authoritative/ubuntu-trusty/ pdns-${BUILDER_VERSION}/debian/
12 @ENDIF
13
14 @IF [ ! -z "$M_recursor" ]
15 ADD builder-support/debian/recursor/ubuntu-trusty/ pdns-recursor-${BUILDER_VERSION}/debian/
16 @ENDIF
17
18 @IF [ ! -z "$M_dnsdist" ]
19 ADD builder-support/debian/dnsdist/ubuntu-trusty/ dnsdist-${BUILDER_VERSION}/debian/
20 @ENDIF
21
22 @INCLUDE Dockerfile.debbuild
23
24 # Do a test install and verify
25 # Can be skipped with skiptests=1 in the environment
26 # @EXEC [ "$skiptests" = "" ] && include Dockerfile.debtest