mirror of
https://github.com/thegeeklab/wp-docker-buildx.git
synced 2024-11-21 13:50:39 +00:00
fix: remove unimplemented squash option (#52)
This commit is contained in:
parent
708587693c
commit
276f215b24
@ -163,12 +163,6 @@ func settingsFlags(settings *plugin.Settings) []cli.Flag {
|
|||||||
EnvVars: []string{"PLUGIN_CACHE_FROM"},
|
EnvVars: []string{"PLUGIN_CACHE_FROM"},
|
||||||
Destination: &settings.Build.CacheFrom,
|
Destination: &settings.Build.CacheFrom,
|
||||||
},
|
},
|
||||||
&cli.BoolFlag{
|
|
||||||
Name: "squash",
|
|
||||||
Usage: "squash the layers at build time",
|
|
||||||
EnvVars: []string{"PLUGIN_SQUASH"},
|
|
||||||
Destination: &settings.Build.Squash,
|
|
||||||
},
|
|
||||||
&cli.BoolFlag{
|
&cli.BoolFlag{
|
||||||
Name: "pull-image",
|
Name: "pull-image",
|
||||||
Usage: "force pull base image at build time",
|
Usage: "force pull base image at build time",
|
||||||
|
@ -87,9 +87,6 @@ func commandBuild(build Build, dryrun bool) *exec.Cmd {
|
|||||||
if !dryrun {
|
if !dryrun {
|
||||||
args = append(args, "--push")
|
args = append(args, "--push")
|
||||||
}
|
}
|
||||||
if build.Squash {
|
|
||||||
args = append(args, "--squash")
|
|
||||||
}
|
|
||||||
if build.Compress {
|
if build.Compress {
|
||||||
args = append(args, "--compress")
|
args = append(args, "--compress")
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,6 @@ type Build struct {
|
|||||||
Args cli.StringSlice // Docker build args
|
Args cli.StringSlice // Docker build args
|
||||||
ArgsEnv cli.StringSlice // Docker build args from env
|
ArgsEnv cli.StringSlice // Docker build args from env
|
||||||
Target string // Docker build target
|
Target string // Docker build target
|
||||||
Squash bool // Docker build squash
|
|
||||||
Pull bool // Docker build pull
|
Pull bool // Docker build pull
|
||||||
CacheFrom cli.StringSlice // Docker build cache-from
|
CacheFrom cli.StringSlice // Docker build cache-from
|
||||||
Compress bool // Docker build compress
|
Compress bool // Docker build compress
|
||||||
@ -155,11 +154,6 @@ func (p *Plugin) Execute() error {
|
|||||||
fmt.Println("Registry credentials or Docker config not provided. Guest mode enabled.")
|
fmt.Println("Registry credentials or Docker config not provided. Guest mode enabled.")
|
||||||
}
|
}
|
||||||
|
|
||||||
if p.settings.Build.Squash && !p.settings.Daemon.Experimental {
|
|
||||||
fmt.Println("Squash build flag is only available when Docker deamon is started with experimental flag. Ignoring...")
|
|
||||||
p.settings.Build.Squash = false
|
|
||||||
}
|
|
||||||
|
|
||||||
// add proxy build args
|
// add proxy build args
|
||||||
addProxyBuildArgs(&p.settings.Build)
|
addProxyBuildArgs(&p.settings.Build)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user