wideesg-report-api/Dockerfile

9 lines
204 B
Docker
Raw Normal View History

2021-11-25 10:09:24 +08:00
FROM golang:latest
ENV GOPROXY https://goproxy.cn,direct
WORKDIR /home/esg_report_backend
COPY . .
RUN go build -o app .
WORKDIR /dist
RUN cp /home/esg_report_backend
EXPOSE 9090
ENTRYPOINT ["/dist/app"]