-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathuser-rpc.dockerfile
More file actions
30 lines (21 loc) · 827 Bytes
/
user-rpc.dockerfile
File metadata and controls
30 lines (21 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM golang:alpine AS builder
LABEL stage=gobuilder
ENV CGO_ENABLED 0
ENV GOPROXY https://goproxy.cn,direct
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
RUN apk update --no-cache && apk add --no-cache tzdata
WORKDIR /build
ADD go.mod .
ADD go.sum .
RUN go mod download
COPY . .
COPY application/user/rpc/etc/user-rpc-dev.yaml /app/etc/user-rpc.yaml
RUN go build -ldflags="-s -w" -o /app/user-rpc application/user/rpc/user.go
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=builder /usr/share/zoneinfo/Asia/Shanghai /usr/share/zoneinfo/Asia/Shanghai
ENV TZ Asia/Shanghai
WORKDIR /app
COPY --from=builder /app/user-rpc /app/user-rpc
COPY --from=builder /app/etc /app/etc
CMD ["./user-rpc", "-f", "etc/user-rpc.yaml"]