docker/faas-cli/Makefile

14 lines
214 B
Makefile
Raw Normal View History

2021-11-02 00:09:53 +00:00
VERSION=0.13.13
IMAGE=faas-cli
REGISTRY=registry.0xace.cc/ghp
.PHONY: build push all
build:
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push