We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3497031 commit 9bd5ae8Copy full SHA for 9bd5ae8
pipeline.py
@@ -1171,11 +1171,11 @@ def build_multi_arch_agent_in_sonar(
1171
ecr_registry = os.environ.get("REGISTRY", "268558157000.dkr.ecr.us-east-1.amazonaws.com/dev")
1172
ecr_agent_registry = ecr_registry + f"/mongodb-agent-ubi"
1173
quay_agent_registry = QUAY_REGISTRY_URL + f"/mongodb-agent-ubi"
1174
- joined_args = [arch_amd]
+ joined_args = [args | arch_amd]
1175
1176
# Only include arm64 if we shouldn't skip it
1177
if not should_skip_arm64():
1178
- joined_args.append(arch_arm)
+ joined_args.append(args | arch_arm)
1179
1180
build_image_generic(
1181
config=build_configuration,
0 commit comments