All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
32 lines
667 B
Docker
32 lines
667 B
Docker
FROM golang:alpine AS builder
|
|
|
|
LABEL stage=gobuilder
|
|
|
|
ENV GOPROXY=https://goproxy.cn,direct
|
|
ENV CGO_ENABLED=0
|
|
|
|
|
|
RUN apk update --no-cache && apk add --no-cache tzdata
|
|
|
|
WORKDIR /build
|
|
|
|
ADD go.mod .
|
|
ADD go.sum .
|
|
RUN go mod download
|
|
COPY . .
|
|
|
|
RUN go build -ldflags="-s -w" -o /app/file file/file.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/file /app/file
|
|
COPY docker/docker-file/etc/config.yaml /app/etc/config.yaml
|
|
|
|
CMD ["./file", "-f", "etc/config.yaml"]
|