2020-02-28 07:18:47 +00:00
|
|
|
FROM golang:1.13.8 as builder
|
2020-03-10 06:16:22 +00:00
|
|
|
ARG GOPROXY=direct
|
2020-01-08 13:57:14 +00:00
|
|
|
WORKDIR /go/src/ehang.io/nps
|
2019-11-27 14:46:34 +00:00
|
|
|
COPY . .
|
|
|
|
RUN go get -d -v ./...
|
|
|
|
RUN CGO_ENABLED=0 go build -ldflags="-w -s -extldflags -static" ./cmd/nps/nps.go
|
|
|
|
|
|
|
|
FROM scratch
|
2020-01-08 13:57:14 +00:00
|
|
|
COPY --from=builder /go/src/ehang.io/nps/nps /
|
|
|
|
COPY --from=builder /go/src/ehang.io/nps/web /web
|
2019-11-27 14:46:34 +00:00
|
|
|
VOLUME /conf
|
|
|
|
CMD ["/nps"]
|