Makefile 348 B

1234567891011
  1. NAME=idcard
  2. VERSION=latest
  3. BUILD_TIME := $(shell date "+%F %T")
  4. COMMIT_SHA1 := $(shell git rev-parse HEAD)
  5. AUTHOR := $(shell git show -s --format='%an')
  6. .PHONY: local
  7. local:
  8. @docker build -t registry.cn-hangzhou.aliyuncs.com/sxtest/$(NAME):$(VERSION) .
  9. @docker push registry.cn-hangzhou.aliyuncs.com/sxtest/$(NAME):$(VERSION)