-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy patharticle-api.dockerfile
More file actions
30 lines (21 loc) · 857 Bytes
/
article-api.dockerfile
File metadata and controls
30 lines (21 loc) · 857 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/article/api/etc/article-api-dev.yaml /app/etc/article-api.yaml
RUN go build -ldflags="-s -w" -o /app/article-api application/article/api/article.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/article-api /app/article-api
COPY --from=builder /app/etc /app/etc
CMD ["./article-api", "-f", "etc/article-api.yaml"]