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.
goredns/Dockerfile

7 lines
148 B
Docker
Raw Normal View History

2021-03-02 22:58:47 +00:00
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"]