autodns/Dockerfile
2025-02-04 14:12:02 +08:00

9 lines
187 B
Docker

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