From 07df69d339816f293eccff02bc5acac6e2de744e Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Thu, 7 May 2015 00:29:26 -0700 Subject: [PATCH] Add a docker image for dnsutils --- contrib/for-tests/dnsutils/Dockerfile | 6 ++++++ contrib/for-tests/dnsutils/Makefile | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 contrib/for-tests/dnsutils/Dockerfile create mode 100644 contrib/for-tests/dnsutils/Makefile diff --git a/contrib/for-tests/dnsutils/Dockerfile b/contrib/for-tests/dnsutils/Dockerfile new file mode 100644 index 00000000000..e58cb0147c7 --- /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 00000000000..992669ca777 --- /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