add docker file

This commit is contained in:
Jörg Thalheim 2016-02-04 11:41:17 +01:00
parent 4384bb77d5
commit 348e589bbc
2 changed files with 14 additions and 0 deletions

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM scratch
USER 99
ADD whois42d /
CMD ["/whois42d", "-registry", "/registry", "-port", "4343"]

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
VERSION?=1.0
container:
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o whois42d .
strip whois42d
docker build -t mic92/whois42d:$(VERSION) .
upload:
docker tag -f mic92/whois42d:$(VERSION) mic92/whois42d:latest
docker push mic92/whois42d