This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
goredns/Dockerfile
2021-03-03 00:58:47 +02:00

7 lines
148 B
Docker

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"]