since enabling 2fa for our business, its to possible to run any heavy build task in acr.
A small hello:world container does indeed start with an acr task:
acr task create -r $registry -n $mytask --cmd hello-world:latest -c /dev/null
However our big fat build container for applications does not spin up:
acr task create -r $registry -n $mytask --cmd $registry.azurecr.io/buildcontainer:latest -c /dev/null
Starting this task deploys an agent, pulls the image and then stalls without errors or anything with timeout after 60mins.
Does anyone know a solution to this problem?