add docker:dind with faas-cli 0.13.13

This commit is contained in:
ace
2021-11-02 03:09:53 +03:00
parent 740c91098e
commit fb1047603f
2 changed files with 17 additions and 0 deletions

13
faas-cli/Makefile Normal file
View File

@ -0,0 +1,13 @@
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