@@ -59,6 +59,7 @@ import (
59
59
// name to the image that it produces.
60
60
type StageExecutor struct {
61
61
ctx context.Context
62
+ systemContext * types.SystemContext
62
63
executor * Executor
63
64
log func (format string , args ... interface {})
64
65
index int
@@ -584,8 +585,8 @@ func (s *StageExecutor) performCopy(excludes []string, copies ...imagebuilder.Co
584
585
// The values for these next two fields are ultimately
585
586
// based on command line flags with names that sound
586
587
// much more generic.
587
- CertPath : s .executor . systemContext .DockerCertPath ,
588
- InsecureSkipTLSVerify : s .executor . systemContext .DockerInsecureSkipTLSVerify ,
588
+ CertPath : s .systemContext .DockerCertPath ,
589
+ InsecureSkipTLSVerify : s .systemContext .DockerInsecureSkipTLSVerify ,
589
590
MaxRetries : s .executor .maxPullPushRetries ,
590
591
RetryDelay : s .executor .retryPullPushDelay ,
591
592
Parents : copy .Parents ,
@@ -841,7 +842,7 @@ func (s *StageExecutor) Run(run imagebuilder.Run, config docker.Config) error {
841
842
Stderr : s .executor .err ,
842
843
Stdin : stdin ,
843
844
Stdout : s .executor .out ,
844
- SystemContext : s .executor . systemContext ,
845
+ SystemContext : s .systemContext ,
845
846
Terminal : buildah .WithoutTerminal ,
846
847
User : config .User ,
847
848
WorkingDir : config .WorkingDir ,
@@ -966,19 +967,21 @@ func (s *StageExecutor) prepare(ctx context.Context, from string, initializeIBCo
966
967
}
967
968
}
968
969
969
- builderSystemContext := s .executor .systemContext
970
- // get platform string from stage
971
- if stage .Builder .Platform != "" {
972
- os , arch , variant , err := parse .Platform (stage .Builder .Platform )
970
+ builderSystemContext := s .systemContext
971
+ // In a multi-stage build where `FROM --platform=<>` was used then we must
972
+ // reset context for new stages so that new stages don't inherit unexpected
973
+ // `--platform` from prior stages.
974
+ if stage .Builder .Platform != "" || (len (s .stages ) > 1 && ((builderSystemContext .ArchitectureChoice == "" && builderSystemContext .VariantChoice == "" && builderSystemContext .OSChoice == "" ) || (s .executor .skipUnusedStages == types .OptionalBoolFalse ))) {
975
+ imageOS , imageArch , imageVariant , err := parse .Platform (stage .Builder .Platform )
973
976
if err != nil {
974
977
return nil , fmt .Errorf ("unable to parse platform %q: %w" , stage .Builder .Platform , err )
975
978
}
976
- if arch != "" || variant != "" {
977
- builderSystemContext .ArchitectureChoice = arch
978
- builderSystemContext .VariantChoice = variant
979
+ if imageArch != "" || imageVariant != "" {
980
+ builderSystemContext .ArchitectureChoice = imageArch
981
+ builderSystemContext .VariantChoice = imageVariant
979
982
}
980
- if os != "" {
981
- builderSystemContext .OSChoice = os
983
+ if imageOS != "" {
984
+ builderSystemContext .OSChoice = imageOS
982
985
}
983
986
}
984
987
@@ -2058,7 +2061,7 @@ func (s *StageExecutor) tagExistingImage(ctx context.Context, cacheID, output st
2058
2061
return "" , nil , err
2059
2062
}
2060
2063
2061
- policyContext , err := util .GetPolicyContext (s .executor . systemContext )
2064
+ policyContext , err := util .GetPolicyContext (s .systemContext )
2062
2065
if err != nil {
2063
2066
return "" , nil , err
2064
2067
}
@@ -2171,7 +2174,7 @@ func (s *StageExecutor) pushCache(ctx context.Context, src, cacheKey string) err
2171
2174
Compression : s .executor .compression ,
2172
2175
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2173
2176
Store : s .executor .store ,
2174
- SystemContext : s .executor . systemContext ,
2177
+ SystemContext : s .systemContext ,
2175
2178
BlobDirectory : s .executor .blobDirectory ,
2176
2179
SignBy : s .executor .signBy ,
2177
2180
MaxRetries : s .executor .maxPullPushRetries ,
@@ -2209,7 +2212,7 @@ func (s *StageExecutor) pullCache(ctx context.Context, cacheKey string) (referen
2209
2212
options := buildah.PullOptions {
2210
2213
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2211
2214
Store : s .executor .store ,
2212
- SystemContext : s .executor . systemContext ,
2215
+ SystemContext : s .systemContext ,
2213
2216
BlobDirectory : s .executor .blobDirectory ,
2214
2217
MaxRetries : s .executor .maxPullPushRetries ,
2215
2218
RetryDelay : s .executor .retryPullPushDelay ,
@@ -2431,7 +2434,7 @@ func (s *StageExecutor) commit(ctx context.Context, createdBy string, emptyLayer
2431
2434
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2432
2435
ReportWriter : writer ,
2433
2436
PreferredManifestType : s .executor .outputFormat ,
2434
- SystemContext : s .executor . systemContext ,
2437
+ SystemContext : s .systemContext ,
2435
2438
Squash : squash ,
2436
2439
OmitHistory : s .executor .commonBuildOptions .OmitHistory ,
2437
2440
EmptyLayer : emptyLayer ,
0 commit comments