mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 16:24:19 -04:00
8 lines
130 B
Makefile
8 lines
130 B
Makefile
|
|
all:
|
||
|
|
go build
|
||
|
|
|
||
|
|
.PHONY: docker
|
||
|
|
docker:
|
||
|
|
GOOS=linux go build -a -tags netgo -installsuffix netgo
|
||
|
|
docker build -t $$USER/coredns .
|