This commit is contained in:
xuyucheng 2021-11-25 11:21:56 +08:00
parent cfdf7b9a7f
commit 6a971fb208
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
FROM golang:latest FROM golang:latest
ENV GOPROXY https://goproxy.cn,direct ENV GOPROXY https://goproxy.cn,direct
WORKDIR /home/esg_report_backend WORKDIR /esg_report_backend
COPY . . COPY . .
RUN go env -w GO111MODULE=on RUN go env -w GO111MODULE=on
RUN go env -w GOPROXY=https://goproxy.cn,direct RUN go env -w GOPROXY=https://goproxy.cn,direct
RUN go mod tidy RUN go mod tidy
RUN go build -o app . RUN go build -o app .
WORKDIR /dist WORKDIR /dist
RUN cp /home/esg_report_backend RUN cp /esg_report_backend
EXPOSE 9090 EXPOSE 9090
ENTRYPOINT ["/dist/app"] ENTRYPOINT ["/dist/app"]