update docker's resolv.conf file with options ndots:5

This commit is contained in:
Abhishek Shah
2015-06-23 16:36:06 -07:00
parent d1301d2b2a
commit 23caf446ae
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