10 lines
225 B
Docker
10 lines
225 B
Docker
FROM golang:latest
|
|
|
|
ENV GOPROXY https://goproxy.cn,direct
|
|
WORKDIR $GOPATH/src/github.com/EDDYCJY/go-gin-example
|
|
COPY . $GOPATH/src/github.com/EDDYCJY/go-gin-example
|
|
RUN go build .
|
|
|
|
EXPOSE 8000
|
|
ENTRYPOINT ["./go-gin-example"]
|