Files
coredns/Makefile

8 lines
130 B
Makefile
Raw Normal View History

all:
go build
.PHONY: docker
docker:
GOOS=linux go build -a -tags netgo -installsuffix netgo
docker build -t $$USER/coredns .