Documentation ¶
Index ¶
Constants ¶
View Source
const ( Name = "containerize" Usage = "Containerize the target app" Alias = "c" )
Variables ¶
View Source
var CLI = &cli.Command{ Name: Name, Aliases: []string{Alias}, Usage: Usage, Action: func(ctx *cli.Context) error { if ctx.Args().Len() < 1 { fmt.Printf("docker-slim[%s]: missing target info...\n\n", Name) cli.ShowCommandHelp(ctx, Name) return nil } gcvalues, err := commands.GlobalFlagValues(ctx) if err != nil { return err } targetRef := ctx.Args().First() xc := app.NewExecutionContext(Name) OnCommand( xc, gcvalues, targetRef) return nil }, }
View Source
var CommandSuggestion = prompt.Suggest{ Text: Name, Description: Usage, }
Functions ¶
func OnCommand ¶
func OnCommand( xc *app.ExecutionContext, gparams *commands.GenericParams, targetRef string)
OnCommand implements the 'containerize' docker-slim command
func RegisterCommand ¶
func RegisterCommand()
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.