fix(deps): update github.com/containers/common digest to 3e93a76

Signed-off-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
renovate[bot]
2023-05-06 11:14:08 +00:00
committed by GitHub
parent ace3cba5c1
commit 11d92ea376
228 changed files with 24071 additions and 1551 deletions

View File

@ -54,11 +54,13 @@ func (r *Runtime) Import(ctx context.Context, path string, options *ImportOption
}
config := v1.Image{
Config: ic,
History: history,
OS: options.OS,
Architecture: options.Arch,
Variant: options.Variant,
Config: ic,
History: history,
Platform: v1.Platform{
OS: options.OS,
Architecture: options.Arch,
Variant: options.Variant,
},
}
u, err := url.ParseRequestURI(path)