diff options
author | 2016-04-13 20:14:13 +0100 | |
---|---|---|
committer | 2016-04-13 20:14:13 +0100 | |
commit | da447e28f494c47c5212f0e045ba8c3c065f45fb (patch) | |
tree | 0a715ef840c375e710c52ee9442bfca484908a25 /Makefile | |
parent | 982377516b3c7381de40ebbcdb6e8a73e6b44b54 (diff) | |
download | coredns-da447e28f494c47c5212f0e045ba8c3c065f45fb.tar.gz coredns-da447e28f494c47c5212f0e045ba8c3c065f45fb.tar.zst coredns-da447e28f494c47c5212f0e045ba8c3c065f45fb.zip |
Add Dockerfile (#116)
Add some docker bits and a Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..7e5710fa9 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: + go build + +.PHONY: docker +docker: + GOOS=linux go build -a -tags netgo -installsuffix netgo + docker build -t $$USER/coredns . |