go-zero/tools/goctl/docker/template.go

46 lines
921 B
Go
Raw Normal View History

2020-11-09 18:02:16 +08:00
package docker
2020-07-29 17:11:41 +08:00
2020-11-09 18:02:16 +08:00
import (
"github.com/tal-tech/go-zero/tools/goctl/util"
"github.com/urfave/cli"
)
const (
category = "docker"
dockerTemplateFile = "docker.tpl"
dockerTemplate = `FROM golang:alpine AS builder
2020-07-29 17:11:41 +08:00
LABEL stage=gobuilder
ENV CGO_ENABLED 0
ENV GOOS linux
ENV GOPROXY https://goproxy.cn,direct
2020-11-08 21:28:58 +08:00
WORKDIR /build/zero
2020-07-29 17:11:41 +08:00
COPY . .
RUN sh -c "[ -f go.mod ]" || exit
2020-11-08 21:28:58 +08:00
COPY {{.goRelPath}}/etc /app/etc
2020-07-29 17:11:41 +08:00
RUN go build -ldflags="-s -w" -o /app/{{.exeFile}} {{.goRelPath}}/{{.goFile}}
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/{{.exeFile}} /app/{{.exeFile}}
2020-11-08 21:28:58 +08:00
COPY --from=builder /app/etc /app/etc
2020-07-29 17:11:41 +08:00
CMD ["./{{.exeFile}}"{{.argument}}]
`
2020-11-09 18:02:16 +08:00
)
func GenTemplates(_ *cli.Context) error {
return util.InitTemplates(category, map[string]string{
dockerTemplateFile: dockerTemplate,
})
}