]> git.ipfire.org Git - thirdparty/pdns.git/blobdiff - Makefile.docker
dnsdist: Add regression tests for the new cache-miss rules chain
[thirdparty/pdns.git] / Makefile.docker
index 195f88c42e2c3428e24bbeba3060ef94d91d7dd5..e882a1eb7929225cdd852d4eeb1462159fb2e100 100644 (file)
@@ -1,15 +1,22 @@
-.PHONY: all build build-nocache dep
+.PHONY: all build build-nocache dep auth recursor dnsdist
 
 VERSION=experimental
 REVISION=1
 
 all: build
 
-build:
+auth:
        docker build --build-arg VERSION=$(VERSION) -t powerdns/pdns-auth-master:$(VERSION)-$(REVISION) --rm -f Dockerfile-auth .
+
+recursor:
        docker build --build-arg VERSION=$(VERSION) -t powerdns/pdns-recursor-master:$(VERSION)-$(REVISION) --rm -f Dockerfile-recursor .
+
+dnsdist:
        docker build --build-arg VERSION=$(VERSION) -t powerdns/dnsdist-master:$(VERSION)-$(REVISION) --rm -f Dockerfile-dnsdist .
 
+build: auth recursor dnsdist
+       @true
+
 build-nocache:
        docker build --build-arg VERSION=$(VERSION) -t powerdns/pdns-auth-master:$(VERSION)-$(REVISION) --no-cache --rm -f Dockerfile-auth .
        docker build --build-arg VERSION=$(VERSION) -t powerdns/pdns-recursor-master:$(VERSION)-$(REVISION) --no-cache --rm -f Dockerfile-recursor .