k3s/test/images/jessie-dnsutils/Makefile

14 lines
198 B
Makefile

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