diff --git a/contrib/for-tests/dnsutils/Dockerfile b/contrib/for-tests/dnsutils/Dockerfile new file mode 100644 index 0000000000..e58cb0147c --- /dev/null +++ b/contrib/for-tests/dnsutils/Dockerfile @@ -0,0 +1,6 @@ +FROM debian:wheezy +MAINTAINER Tim Hockin "thockin@google.com" + +RUN apt-get -q update && \ + apt-get install -y dnsutils && \ + apt-get clean diff --git a/contrib/for-tests/dnsutils/Makefile b/contrib/for-tests/dnsutils/Makefile new file mode 100644 index 0000000000..992669ca77 --- /dev/null +++ b/contrib/for-tests/dnsutils/Makefile @@ -0,0 +1,8 @@ +all: + @echo "try 'make image' or 'make push'" + +image: + docker build -t gcr.io/google_containers/dnsutils . + +push: + gcloud preview docker push gcr.io/google_containers/dnsutils