Merge pull request #7822 from thockin/dns

DNS: expose 53/TCP
This commit is contained in:
Vish Kannan
2015-05-07 09:34:52 -07:00
5 changed files with 55 additions and 30 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