autodns/Dockerfile

9 lines
187 B
Docker
Raw Permalink Normal View History

2025-02-04 06:12:02 +00:00
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"]