Commit 4528bcd2 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #36776 from bowei/dns-image-alpine

Automatic merge from submit-queue Change dnsutils image to use alpine This reduces the size of the dnsutils image and should reduce the # of failed e2e test runs due to image pull timeout.
parents 3245e8b3 d99accad
......@@ -12,9 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM debian:wheezy
MAINTAINER Tim Hockin "thockin@google.com"
FROM alpine
MAINTAINER Bowei Du "bowei@google.com"
RUN apt-get -q update && \
apt-get install -y dnsutils && \
apt-get clean
RUN apk update --no-cache
RUN apk add bind-tools
......@@ -13,8 +13,8 @@
# limitations under the License.
# This image does not tag
#TAG =
PREFIX = gcr.io/google_containers
TAG ?=
PREFIX ?= gcr.io/google_containers
all: push
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment