Files
kubernetes/test/images/dnsutils/Makefile
2015-10-29 10:12:05 -04:00

14 lines
184 B
Makefile

# This image does not tag
#TAG =
PREFIX = gcr.io/google_containers
all: push
image:
docker build -t $(PREFIX)/dnsutils .
push: image
gcloud docker push $(PREFIX)/dnsutils
clean: