You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the Azure CLI docker image on Apple Silicon will show warning:
$ docker run --rm -it mcr.microsoft.com/azure-cli
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requ
The warning indicates the docker image is built for linux/amd64, but the host machine is linux/arm64/v8. This will lead to low performance as docker needs to translate the instruction set.
Describe the solution you'd like
We should release docker image for linux/arm64/v8.
Is your feature request related to a problem? Please describe.
From MicrosoftDocs/azure-docs-cli#2906
Running the Azure CLI docker image on Apple Silicon will show warning:
The warning indicates the docker image is built for
linux/amd64
, but the host machine islinux/arm64/v8
. This will lead to low performance as docker needs to translate the instruction set.Describe the solution you'd like
We should release docker image for
linux/arm64/v8
.Related:
The text was updated successfully, but these errors were encountered: