Add a docker image for dnsutils

pull/6/head
Tim Hockin 2015-05-07 00:29:26 -07:00
parent ec8ba4a62f
commit 07df69d339
2 changed files with 14 additions and 0 deletions

View File

@ -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

View File

@ -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