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

81 lines
1.8 KiB
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/urfave/cli"
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
2020-11-09 18:02:16 +08:00
)
const (
category = "docker"
dockerTemplateFile = "docker.tpl"
dockerTemplate = `FROM golang:{{.Version}}alpine AS builder
2020-07-29 17:11:41 +08:00
LABEL stage=gobuilder
ENV CGO_ENABLED 0
{{if .Chinese}}ENV GOPROXY https://goproxy.cn,direct
{{end}}{{if .HasTimezone}}
RUN apk update --no-cache && apk add --no-cache tzdata
{{end}}
WORKDIR /build
ADD go.mod .
ADD go.sum .
RUN go mod download
2020-07-29 17:11:41 +08:00
COPY . .
2020-12-12 16:53:06 +08:00
{{if .Argument}}COPY {{.GoRelPath}}/etc /app/etc
2020-12-11 20:31:31 +08:00
{{end}}RUN go build -ldflags="-s -w" -o /app/{{.ExeFile}} {{.GoRelPath}}/{{.GoFile}}
2020-07-29 17:11:41 +08:00
FROM {{.BaseImage}}
2020-07-29 17:11:41 +08:00
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
{{if .HasTimezone}}COPY --from=builder /usr/share/zoneinfo/{{.Timezone}} /usr/share/zoneinfo/{{.Timezone}}
ENV TZ {{.Timezone}}
{{end}}
2020-07-29 17:11:41 +08:00
WORKDIR /app
2020-12-12 16:53:06 +08:00
COPY --from=builder /app/{{.ExeFile}} /app/{{.ExeFile}}{{if .Argument}}
COPY --from=builder /app/etc /app/etc{{end}}
{{if .HasPort}}
EXPOSE {{.Port}}
2020-12-11 20:31:31 +08:00
{{end}}
CMD ["./{{.ExeFile}}"{{.Argument}}]
2020-07-29 17:11:41 +08:00
`
2020-11-09 18:02:16 +08:00
)
// Clean deletes all templates files
2020-12-11 18:53:40 +08:00
func Clean() error {
return pathx.Clean(category)
2020-12-11 18:53:40 +08:00
}
// GenTemplates creates docker template files
2020-11-09 18:02:16 +08:00
func GenTemplates(_ *cli.Context) error {
2020-12-11 18:53:40 +08:00
return initTemplate()
}
// Category returns the const string of docker category
2020-12-11 18:53:40 +08:00
func Category() string {
return category
}
// RevertTemplate recovers the deleted template files
2020-12-11 18:53:40 +08:00
func RevertTemplate(name string) error {
return pathx.CreateTemplate(category, name, dockerTemplate)
2020-12-11 18:53:40 +08:00
}
// Update deletes and creates new template files
2020-12-11 18:53:40 +08:00
func Update() error {
err := Clean()
if err != nil {
return err
}
return initTemplate()
}
func initTemplate() error {
return pathx.InitTemplates(category, map[string]string{
2020-11-09 18:02:16 +08:00
dockerTemplateFile: dockerTemplate,
})
}