manifest/build: pull in tar implicitly
The tar pipeline requires tar, let only that pull it in.
This commit is contained in:
parent
fed620b861
commit
b714dcb780
3 changed files with 8 additions and 1 deletions
|
|
@ -43,7 +43,6 @@ func (p *BuildPipeline) getPackageSetChain() []rpmmd.PackageSet {
|
||||||
"selinux-policy-targeted",
|
"selinux-policy-targeted",
|
||||||
"coreutils",
|
"coreutils",
|
||||||
"systemd",
|
"systemd",
|
||||||
"tar",
|
|
||||||
"xz",
|
"xz",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,3 +55,7 @@ func (p *OCIContainerPipeline) serialize() osbuild2.Pipeline {
|
||||||
|
|
||||||
return pipeline
|
return pipeline
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *OCIContainerPipeline) getBuildPackages() []string {
|
||||||
|
return []string{"tar"}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,3 +45,7 @@ func (p *TarPipeline) serialize() osbuild2.Pipeline {
|
||||||
|
|
||||||
return pipeline
|
return pipeline
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *TarPipeline) getBuildPackages() []string {
|
||||||
|
return []string{"tar"}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue