Add proof of concept

This commit is contained in:
2021-03-03 00:58:47 +02:00
commit 7dd6650fd0
4 changed files with 102 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM golang:1.10
WORKDIR $GOPATH/src/git.k-space.ee/pinecrypt/goredns
COPY main.go .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["goredns"]