23 lines
543 B
Go
23 lines
543 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"fmt"
|
|
"os"
|
|
"github.com/wagoodman/dive/image"
|
|
"github.com/wagoodman/dive/ui"
|
|
"github.com/fatih/color"
|
|
)
|
|
|
|
// analyze takes a docker image tag, digest, or id and displayes the
|
|
// image analysis to the screen
|
|
func analyze(cmd *cobra.Command, args []string) {
|
|
userImage := args[0]
|
|
if userImage == "" {
|
|
fmt.Println("No image argument given")
|
|
os.Exit(1)
|
|
}
|
|
color.New(color.Bold).Println("Analyzing Image")
|
|
manifest, refTrees := image.InitializeData(userImage)
|
|
ui.Run(manifest, refTrees)
|
|
} |