You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/example/graceful/dns/rpc/Dockerfile

23 lines
501 B
Docker

FROM golang:1.13 AS builder
ENV CGO_ENABLED 0
ENV GOOS linux
WORKDIR $GOPATH/src/zero
COPY . .
RUN go build -ldflags="-s -w" -o /app/gracefulrpc example/graceful/dns/rpc/gracefulrpc.go
FROM alpine
RUN apk update --no-cache
RUN apk add --no-cache ca-certificates
RUN apk add --no-cache tzdata
ENV TZ Asia/Shanghai
WORKDIR /app
COPY --from=builder /app/gracefulrpc /app/gracefulrpc
COPY example/graceful/dns/rpc/etc/config.json /app/etc/config.json
CMD ["./gracefulrpc", "-f", "etc/config.json"]