add dockerfile into template
parent
3f389a55c2
commit
cb9075b737
@ -1,40 +0,0 @@
|
|||||||
package gen
|
|
||||||
|
|
||||||
import (
|
|
||||||
"path/filepath"
|
|
||||||
"strings"
|
|
||||||
"text/template"
|
|
||||||
|
|
||||||
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
||||||
)
|
|
||||||
|
|
||||||
func GenerateDockerfile(goFile string, args ...string) error {
|
|
||||||
projPath, err := getFilePath(filepath.Dir(goFile))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
pos := strings.IndexByte(projPath, '/')
|
|
||||||
if pos >= 0 {
|
|
||||||
projPath = projPath[pos+1:]
|
|
||||||
}
|
|
||||||
|
|
||||||
out, err := util.CreateIfNotExist("Dockerfile")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer out.Close()
|
|
||||||
|
|
||||||
var builder strings.Builder
|
|
||||||
for _, arg := range args {
|
|
||||||
builder.WriteString(`, "` + arg + `"`)
|
|
||||||
}
|
|
||||||
|
|
||||||
t := template.Must(template.New("dockerfile").Parse(dockerTemplate))
|
|
||||||
return t.Execute(out, map[string]string{
|
|
||||||
"goRelPath": projPath,
|
|
||||||
"goFile": goFile,
|
|
||||||
"exeFile": util.FileNameWithoutExt(filepath.Base(goFile)),
|
|
||||||
"argument": builder.String(),
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,26 +0,0 @@
|
|||||||
package gen
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"os"
|
|
||||||
"path/filepath"
|
|
||||||
|
|
||||||
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
||||||
)
|
|
||||||
|
|
||||||
func getFilePath(file string) (string, error) {
|
|
||||||
wd, err := os.Getwd()
|
|
||||||
if err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
projPath, ok := util.FindGoModPath(filepath.Join(wd, file))
|
|
||||||
if !ok {
|
|
||||||
projPath, err = util.PathFromGoSrc()
|
|
||||||
if err != nil {
|
|
||||||
return "", errors.New("no go.mod found, or not in GOPATH")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return projPath, nil
|
|
||||||
}
|
|
Loading…
Reference in New Issue