FROM golang:latest ENV GOPROXY https://goproxy.cn,direct WORKDIR $GOPATH/src/github.com/autodns COPY . $GOPATH/src/github.com/autodns RUN go build . EXPOSE 8080 ENTRYPOINT ["./autodns"]