Merge pull request #10266 from ArtfulCoder/kubelet_resolv

update docker's resolv.conf file with options ndots:5
This commit is contained in:
Maxwell Forbes
2015-06-25 09:54:36 -07:00
4 changed files with 110 additions and 62 deletions

View File

@@ -0,0 +1,6 @@
FROM debian:jessie
MAINTAINER Abhishek Shah "abshah@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/jessie-dnsutils .
push:
gcloud docker push gcr.io/google_containers/jessie-dnsutils