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
while running on mac, getting error because the image is created in "arm64" format.
Solution : run the following command to specify the image platform, then your image will be created in "amd64" :-
docker buildx build --platform linux/amd64 -f ./Dockerfile -t name-of-your-image .
The text was updated successfully, but these errors were encountered:
while running on mac, getting error because the image is created in "arm64" format.
Solution : run the following command to specify the image platform, then your image will be created in "amd64" :-
docker buildx build --platform linux/amd64 -f ./Dockerfile -t name-of-your-image .
The text was updated successfully, but these errors were encountered: