I'm trying to follow the tutorials at MS Learn about Containers in Azure. I'm trying to push a docker image to my recently created azure container registry I'm using the az acr build command in the Azure CLI, I'm also using a docker file. After running the command I get this message in the console "Packing source code into tar to upload..." then after a couple of minutes I get this:
[WinError 5] Access is denied: '.\\AppData\\Local\\Application Data'
I did a little research and it's supposed that's a junction folder in Win 10 which means it only exists for backwards compatibility, it only redirects you to the new location Microsoft uses.
Anyone happen to have had this error?
I also tried to modify permissions to the Application Data folder but no matter which permissions it has it still throws the same exception.
UPDATE
The tutorial I'm trying to follow along is in this link.
I also tried to use the --verbose
flag of the az acr build command and the error is being thrown in this file ```cli.azure.cli.core.util````. I looked over the azure cli github project and found the file but I'm not as good developer to figured out what's going on.