summaryrefslogtreecommitdiffstats
path: root/runtime/options.go
blob: c9c5a1ed8333e4330c7cc44d1993250206e22905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package runtime

import (
	"github.com/spf13/viper"

	"github.com/wagoodman/dive/dive"
)

type Options struct {
	Ci           bool
	Image        string
	Source       dive.ImageSource
	IgnoreErrors bool
	ExportFile   string
	CiConfig     *viper.Viper
	BuildArgs    []string
}