osbuild-worker: use the new ostree resolver API
This commit is contained in:
parent
f291f41dbc
commit
64f479092d
27 changed files with 318 additions and 136 deletions
4
vendor/github.com/osbuild/images/pkg/manifest/build.go
generated
vendored
4
vendor/github.com/osbuild/images/pkg/manifest/build.go
generated
vendored
|
|
@ -236,7 +236,9 @@ func (p *BuildrootFromContainer) serialize() osbuild.Pipeline {
|
|||
pipeline.Runner = p.runner.String()
|
||||
|
||||
image := osbuild.NewContainersInputForSingleSource(p.containerSpecs[0])
|
||||
stage, err := osbuild.NewContainerDeployStage(image, &osbuild.ContainerDeployOptions{})
|
||||
// Make skopeo copy to remove the signatures of signed containers by default to workaround
|
||||
// build failures until https://github.com/containers/image/issues/2599 is implemented
|
||||
stage, err := osbuild.NewContainerDeployStage(image, &osbuild.ContainerDeployOptions{RemoveSignatures: true})
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue