mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #42951 from crazy-max/build-local-normalized
buildkit: normalize build target and local platform
This commit is contained in:
commit
693697bdda
1 changed files with 8 additions and 7 deletions
|
@ -21,6 +21,7 @@ import (
|
|||
"github.com/containerd/containerd/remotes/docker"
|
||||
"github.com/containerd/containerd/remotes/docker/schema1"
|
||||
distreference "github.com/docker/distribution/reference"
|
||||
dimages "github.com/docker/docker/daemon/images"
|
||||
"github.com/docker/docker/distribution"
|
||||
"github.com/docker/docker/distribution/metadata"
|
||||
"github.com/docker/docker/distribution/xfer"
|
||||
|
@ -853,11 +854,11 @@ func resolveModeToString(rm source.ResolveMode) string {
|
|||
}
|
||||
|
||||
func platformMatches(img *image.Image, p *ocispec.Platform) bool {
|
||||
if img.Architecture != p.Architecture {
|
||||
return false
|
||||
}
|
||||
if img.Variant != "" && img.Variant != p.Variant {
|
||||
return false
|
||||
}
|
||||
return img.OS == p.OS
|
||||
return dimages.OnlyPlatformWithFallback(*p).Match(ocispec.Platform{
|
||||
Architecture: img.Architecture,
|
||||
OS: img.OS,
|
||||
OSVersion: img.OSVersion,
|
||||
OSFeatures: img.OSFeatures,
|
||||
Variant: img.Variant,
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue