9 lines
187 B
Docker
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"]
|