wideesg-report-api/Dockerfile

10 lines
237 B
Docker
Raw Normal View History

2021-11-25 10:09:24 +08:00
FROM golang:latest
ENV GOPROXY https://goproxy.cn,direct
2021-11-25 13:55:54 +08:00
WORKDIR /home/gin
2021-11-25 10:09:24 +08:00
COPY . .
2021-11-25 11:08:03 +08:00
RUN go env -w GO111MODULE=on
RUN go env -w GOPROXY=https://goproxy.cn,direct
2021-11-25 11:19:07 +08:00
RUN go mod tidy
2021-11-25 10:09:24 +08:00
RUN go build -o app .
EXPOSE 9090
2021-11-25 14:13:05 +08:00
CMD ["/home/gin/dist/app"]