mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 22:35:50 +01:00
16 lines
274 B
Go
16 lines
274 B
Go
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
|
|
}
|