vendor: update buildkit to v0.32.0-rc1

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2026-07-22 15:27:47 -07:00
parent efd9aa1dea
commit 0cf7592d41
464 changed files with 19941 additions and 15772 deletions
+1 -5
View File
@@ -904,7 +904,7 @@ decision := {
`),
}},
Env: Env{
Args: map[string]*string{"MODE": stringPtr("prod")},
Args: map[string]*string{"MODE": new("prod")},
Filename: "Dockerfile",
Target: "release",
},
@@ -988,10 +988,6 @@ decision := {
require.ErrorContains(t, err, `unknown policy cap "exec.unknown"`)
}
func stringPtr(v string) *string {
return &v
}
func mustMarshalImageConfig(t *testing.T, img ocispecs.Image) []byte {
t.Helper()
dt, err := json.Marshal(img)