You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/tools/goctl/docker/docker.go

18 lines
315 B
Go

package docker
import (
"errors"
"github.com/tal-tech/go-zero/tools/goctl/gen"
"github.com/urfave/cli"
)
func DockerCommand(c *cli.Context) error {
goFile := c.String("go")
if len(goFile) == 0 {
return errors.New("-go can't be empty")
}
return gen.GenerateDockerfile(goFile, "-f", "etc/config.yaml")
}