You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/examples/wordpress/images/nginx/Makefile

19 lines
268 B

.PHONY: all build push clean
PREFIX = gcr.io/$(PROJECT)
IMAGE = nginx
TAG = latest
DIR = .
all: build
build:
docker build -t $(PREFIX)/$(IMAGE):$(TAG) $(DIR)
push: build
gcloud docker push $(PREFIX)/$(IMAGE):$(TAG)
clean:
docker rmi $(PREFIX)/$(IMAGE):$(TAG)