Files
Message-Push-Nest/Dockerfile
T

10 lines
225 B
Docker
Raw Normal View History

2023-12-30 17:40:20 +08:00
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"]