@@ -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
@@ -571,8 +572,8 @@ func (s *StageExecutor) performCopy(excludes []string, copies ...imagebuilder.Co
571
572
// The values for these next two fields are ultimately
572
573
// based on command line flags with names that sound
573
574
// much more generic.
574
- CertPath : s .executor . systemContext .DockerCertPath ,
575
- InsecureSkipTLSVerify : s .executor . systemContext .DockerInsecureSkipTLSVerify ,
575
+ CertPath : s .systemContext .DockerCertPath ,
576
+ InsecureSkipTLSVerify : s .systemContext .DockerInsecureSkipTLSVerify ,
576
577
MaxRetries : s .executor .maxPullPushRetries ,
577
578
RetryDelay : s .executor .retryPullPushDelay ,
578
579
}
@@ -827,7 +828,7 @@ func (s *StageExecutor) Run(run imagebuilder.Run, config docker.Config) error {
827
828
Stderr : s .executor .err ,
828
829
Stdin : stdin ,
829
830
Stdout : s .executor .out ,
830
- SystemContext : s .executor . systemContext ,
831
+ SystemContext : s .systemContext ,
831
832
Terminal : buildah .WithoutTerminal ,
832
833
User : config .User ,
833
834
WorkingDir : config .WorkingDir ,
@@ -952,19 +953,21 @@ func (s *StageExecutor) prepare(ctx context.Context, from string, initializeIBCo
952
953
}
953
954
}
954
955
955
- builderSystemContext := s .executor .systemContext
956
- // get platform string from stage
957
- if stage .Builder .Platform != "" {
958
- os , arch , variant , err := parse .Platform (stage .Builder .Platform )
956
+ builderSystemContext := s .systemContext
957
+ // In a multi-stage build where `FROM --platform=<>` was used then we must
958
+ // reset context for new stages so that new stages don't inherit unexpected
959
+ // `--platform` from prior stages.
960
+ if stage .Builder .Platform != "" || (stage .Position != 0 && builderSystemContext .ArchitectureChoice == "" && builderSystemContext .VariantChoice == "" && builderSystemContext .OSChoice == "" ) {
961
+ imageOS , imageArch , imageVariant , err := parse .Platform (stage .Builder .Platform )
959
962
if err != nil {
960
963
return nil , fmt .Errorf ("unable to parse platform %q: %w" , stage .Builder .Platform , err )
961
964
}
962
- if arch != "" || variant != "" {
963
- builderSystemContext .ArchitectureChoice = arch
964
- builderSystemContext .VariantChoice = variant
965
+ if imageArch != "" || imageVariant != "" {
966
+ builderSystemContext .ArchitectureChoice = imageArch
967
+ builderSystemContext .VariantChoice = imageVariant
965
968
}
966
- if os != "" {
967
- builderSystemContext .OSChoice = os
969
+ if imageOS != "" {
970
+ builderSystemContext .OSChoice = imageOS
968
971
}
969
972
}
970
973
@@ -2041,7 +2044,7 @@ func (s *StageExecutor) tagExistingImage(ctx context.Context, cacheID, output st
2041
2044
return "" , nil , err
2042
2045
}
2043
2046
2044
- policyContext , err := util .GetPolicyContext (s .executor . systemContext )
2047
+ policyContext , err := util .GetPolicyContext (s .systemContext )
2045
2048
if err != nil {
2046
2049
return "" , nil , err
2047
2050
}
@@ -2154,7 +2157,7 @@ func (s *StageExecutor) pushCache(ctx context.Context, src, cacheKey string) err
2154
2157
Compression : s .executor .compression ,
2155
2158
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2156
2159
Store : s .executor .store ,
2157
- SystemContext : s .executor . systemContext ,
2160
+ SystemContext : s .systemContext ,
2158
2161
BlobDirectory : s .executor .blobDirectory ,
2159
2162
SignBy : s .executor .signBy ,
2160
2163
MaxRetries : s .executor .maxPullPushRetries ,
@@ -2192,7 +2195,7 @@ func (s *StageExecutor) pullCache(ctx context.Context, cacheKey string) (referen
2192
2195
options := buildah.PullOptions {
2193
2196
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2194
2197
Store : s .executor .store ,
2195
- SystemContext : s .executor . systemContext ,
2198
+ SystemContext : s .systemContext ,
2196
2199
BlobDirectory : s .executor .blobDirectory ,
2197
2200
MaxRetries : s .executor .maxPullPushRetries ,
2198
2201
RetryDelay : s .executor .retryPullPushDelay ,
@@ -2414,7 +2417,7 @@ func (s *StageExecutor) commit(ctx context.Context, createdBy string, emptyLayer
2414
2417
SignaturePolicyPath : s .executor .signaturePolicyPath ,
2415
2418
ReportWriter : writer ,
2416
2419
PreferredManifestType : s .executor .outputFormat ,
2417
- SystemContext : s .executor . systemContext ,
2420
+ SystemContext : s .systemContext ,
2418
2421
Squash : squash ,
2419
2422
OmitHistory : s .executor .commonBuildOptions .OmitHistory ,
2420
2423
EmptyLayer : emptyLayer ,
0 commit comments