mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-05-04 17:24:25 -04:00
13 lines
184 B
Makefile
13 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:
|