Squash podman layers, not docker layers
This commit is contained in:
parent
bb7c2f94d5
commit
55032f07af
@ -98,7 +98,7 @@ func (cmd *KernelDockerRegenCmd) Run(kernelCmd *KernelCmd, g *Globals) (err erro
|
|||||||
|
|
||||||
args := []string{"build"}
|
args := []string{"build"}
|
||||||
_, err = exec.Command("which", "podman").CombinedOutput()
|
_, err = exec.Command("which", "podman").CombinedOutput()
|
||||||
if err != nil {
|
if err == nil {
|
||||||
args = append(args, "--squash-all")
|
args = append(args, "--squash-all")
|
||||||
}
|
}
|
||||||
args = append(args, "-t", d.ContainerName, imagePath)
|
args = append(args, "-t", d.ContainerName, imagePath)
|
||||||
@ -354,7 +354,7 @@ func generateBaseDockerImage(registry string, commands []config.DockerCommand,
|
|||||||
|
|
||||||
args := []string{"build"}
|
args := []string{"build"}
|
||||||
_, err = exec.Command("which", "podman").CombinedOutput()
|
_, err = exec.Command("which", "podman").CombinedOutput()
|
||||||
if err != nil {
|
if err == nil {
|
||||||
args = append(args, "--squash-all")
|
args = append(args, "--squash-all")
|
||||||
}
|
}
|
||||||
args = append(args, "-t", sk.DockerName(), imagePath)
|
args = append(args, "-t", sk.DockerName(), imagePath)
|
||||||
@ -428,7 +428,7 @@ func dockerImageAppend(sk config.KernelMask, pkgname string) (err error) {
|
|||||||
|
|
||||||
args := []string{"build"}
|
args := []string{"build"}
|
||||||
_, err = exec.Command("which", "podman").CombinedOutput()
|
_, err = exec.Command("which", "podman").CombinedOutput()
|
||||||
if err != nil {
|
if err == nil {
|
||||||
args = append(args, "--squash-all")
|
args = append(args, "--squash-all")
|
||||||
}
|
}
|
||||||
args = append(args, "-t", sk.DockerName(), imagePath)
|
args = append(args, "-t", sk.DockerName(), imagePath)
|
||||||
|
Loading…
Reference in New Issue
Block a user