github.com/matthieudolci/hatcher@v0.2.8/Makefile (about)

     1  TAG ?= latest
     2  
     3  build-docker:
     4  	docker build -t matthieudolci/hatcher:$(TAG) .
     5  .PHONY: build-docker
     6  
     7  build:
     8  	go build -installsuffix cgo -o hatcher
     9  .PHONY: build
    10  
    11  push:
    12  	docker push matthieudolci/hatcher:$(TAG)
    13  .PHONY: push