mirror of
https://github.com/wagoodman/dive
synced 2026-03-14 22:35:50 +01:00
15 lines
238 B
Go
15 lines
238 B
Go
package runtime
|
|
|
|
import (
|
|
"github.com/spf13/viper"
|
|
"github.com/wagoodman/dive/dive"
|
|
)
|
|
|
|
type Options struct {
|
|
Ci bool
|
|
ImageId string
|
|
Engine dive.Engine
|
|
ExportFile string
|
|
CiConfig *viper.Viper
|
|
BuildArgs []string
|
|
}
|