func (c *Container) Build(done chan bool) { buildName := "gaudi/" + c.Name buildPath := "/tmp/gaudi/" + c.Name if c.IsRemote() { buildName = c.Image buildPath = c.Path } fmt.Println("Building", buildName, "...") docker.Build(buildName, buildPath) done <- true }
func (c *Container) Build(done chan bool) { buildName := "gaudi/" + c.Name buildPath := "/tmp/gaudi/" + c.Name if c.IsRemote() { // remote type is deprecated if c.Type == "remote" { util.PrintRed("WARN: 'remote' type is deprecated, use 'github' instead") } buildName = c.Image buildPath = c.Path } util.PrintGreen("Building", buildName, "...") docker.Build(buildName, buildPath) done <- true }