@@ -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,20 @@ 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
+ // In a multi-stage build where `FROM --platform=<>` was used then we must
971
+ // reset context for new stages so that new stages don't inherit unexpected
972
+ // `--platform` from prior stages.
973
+ if stage .Builder .Platform != "" || (len (s .stages ) > 1 && ((s .systemContext .ArchitectureChoice == "" && s .systemContext .VariantChoice == "" && s .systemContext .OSChoice == "" ) || (s .executor .skipUnusedStages == types .OptionalBoolFalse ))) {
974
+ imageOS , imageArch , imageVariant , err := parse .Platform (stage .Builder .Platform )
973
975
if err != nil {
974
976
return nil , fmt .Errorf ("unable to parse platform %q: %w" , stage .Builder .Platform , err )
975
977
}
976
- if arch != "" || variant != "" {
977
- builderSystemContext . ArchitectureChoice = arch
978
- builderSystemContext . VariantChoice = variant
978
+ if imageArch != "" || imageVariant != "" {
979
+ s . systemContext . ArchitectureChoice = imageArch
980
+ s . systemContext . VariantChoice = imageVariant
979
981
}
980
- if os != "" {
981
- builderSystemContext . OSChoice = os
982
+ if imageOS != "" {
983
+ s . systemContext . OSChoice = imageOS
982
984
}
983
985
}
984
986
@@ -992,7 +994,7 @@ func (s *StageExecutor) prepare(ctx context.Context, from string, initializeIBCo
992
994
BlobDirectory : s .executor .blobDirectory ,
993
995
SignaturePolicyPath : s .executor .signaturePolicyPath ,
994
996
ReportWriter : s .executor .reportWriter ,
995
- SystemContext : builderSystemContext ,
997
+ SystemContext : s . systemContext ,
996
998
Isolation : s .executor .isolation ,
997
999
NamespaceOptions : s .executor .namespaceOptions ,
998
1000
ConfigureNetwork : s .executor .configureNetwork ,
@@ -2058,7 +2060,7 @@ func (s *StageExecutor) tagExistingImage(ctx context.Context, cacheID, output st
2058
2060
return "" , nil , err
2059
2061
}
2060
2062
2061
- policyContext , err := util .GetPolicyContext (s .executor . systemContext )
2063
+ policyContext , err := util .GetPolicyContext (s .systemContext )
2062
2064
if err != nil {
2063
2065
return "" , nil , err
2064
2066
}
@@ -2171,7 +2173,7 @@ func (s *StageExecutor) pushCache(ctx context.Context, src, cacheKey string) err
2171
2173
Compression : s .executor .compression ,
2172
2174
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2173
2175
Store : s .executor .store ,
2174
- SystemContext : s .executor . systemContext ,
2176
+ SystemContext : s .systemContext ,
2175
2177
BlobDirectory : s .executor .blobDirectory ,
2176
2178
SignBy : s .executor .signBy ,
2177
2179
MaxRetries : s .executor .maxPullPushRetries ,
@@ -2209,7 +2211,7 @@ func (s *StageExecutor) pullCache(ctx context.Context, cacheKey string) (referen
2209
2211
options := buildah.PullOptions {
2210
2212
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2211
2213
Store : s .executor .store ,
2212
- SystemContext : s .executor . systemContext ,
2214
+ SystemContext : s .systemContext ,
2213
2215
BlobDirectory : s .executor .blobDirectory ,
2214
2216
MaxRetries : s .executor .maxPullPushRetries ,
2215
2217
RetryDelay : s .executor .retryPullPushDelay ,
@@ -2431,7 +2433,7 @@ func (s *StageExecutor) commit(ctx context.Context, createdBy string, emptyLayer
2431
2433
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2432
2434
ReportWriter : writer ,
2433
2435
PreferredManifestType : s .executor .outputFormat ,
2434
- SystemContext : s .executor . systemContext ,
2436
+ SystemContext : s .systemContext ,
2435
2437
Squash : squash ,
2436
2438
OmitHistory : s .executor .commonBuildOptions .OmitHistory ,
2437
2439
EmptyLayer : emptyLayer ,
0 commit comments