Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct ARM architecture detection regex in Docker image build for opctl #1106

Merged
merged 9 commits into from
Apr 3, 2025
2 changes: 1 addition & 1 deletion ads/opctl/utils.py
Original file line number Diff line number Diff line change
@@ -154,7 +154,7 @@ def build_image(image_type: str, gpu: bool = False) -> None:
# Just get the manufacturer of the processors
manufacturer = cpuinfo.get_cpu_info().get("brand_raw")
arch = (
"arm" if re.search("apple m\d ", manufacturer, re.IGNORECASE) else "other"
"arm" if re.search("apple m\d", manufacturer, re.IGNORECASE) else "other"
)
print(f"The local machine's platform is {arch}.")
image, dockerfile, target = _get_image_name_dockerfile_target(