]> git.ipfire.org Git - thirdparty/pdns.git/blame - builder-support/dockerfiles/Dockerfile.target.sdist
Merge pull request #7320 from pieterlexis/auth-lower-udp-trunc
[thirdparty/pdns.git] / builder-support / dockerfiles / Dockerfile.target.sdist
CommitLineData
308fb37a 1@IF [ ! -z "$M_authoritative$M_all" ]
d45c935b
PL
2@INCLUDE Dockerfile.authoritative
3@ENDIF
4
308fb37a 5@IF [ ! -z "$M_recursor$M_all" ]
d45c935b
PL
6@INCLUDE Dockerfile.recursor
7@ENDIF
8
308fb37a 9@IF [ ! -z "$M_dnsdist$M_all" ]
d45c935b
PL
10@INCLUDE Dockerfile.dnsdist
11@ENDIF
12
13FROM alpine:3.6 as sdist
14
308fb37a 15@IF [ ! -z "$M_authoritative$M_all" ]
d45c935b
PL
16COPY --from=pdns-authoritative /sdist/ /sdist/
17@ENDIF
18
308fb37a 19@IF [ ! -z "$M_recursor$M_all" ]
5a5b9246 20COPY --from=pdns-recursor /sdist/ /sdist/
d45c935b
PL
21@ENDIF
22
308fb37a 23@IF [ ! -z "$M_dnsdist$M_all" ]
d45c935b
PL
24COPY --from=dnsdist /sdist/ /sdist/
25@ENDIF