An Azure service that provides a registry of Docker and Open Container Initiative images.
ACR Task error
I am trying to build image in Azure using dockerfile but i get this errorr. What could be the cause?
ACR Tasks requests for the registry readitamaacr and
Azure Container Registry
Answer accepted by question author
AI answer
The error indicates that ACR Tasks is blocked from accessing the registry and its underlying Azure resources, so the task run cannot even start. This is not a Dockerfile or build-context problem but a permissions or platform-side restriction on the registry readitamaacr and the subscription/tenant resource d1390702-3336-4b86-8211-cd84613fe455.
From the message itself ("ACR Tasks requests ... are not permitted. Please file an Azure support request"), this is a backend or policy issue that must be resolved by Azure support for that registry/subscription. Typical causes include:
- ACR Tasks being temporarily paused or disabled for the subscription or region.
- A platform-side restriction on ACR Tasks for that registry (for example, internal policy or misconfiguration that only Microsoft can see/change).
To proceed:
- Collect the following details:
- Registry name:
readitamaacr. - Subscription ID and tenant ID.
- Full error text and approximate time of failure.
- The ACR Task command or definition used.
- Registry name:
- Open an Azure support request as instructed in the error message so the ACR team can remove or adjust the restriction on ACR Tasks for that registry.
Once support removes the restriction, ACR Tasks should be able to run builds normally.
References:
- Automate container image builds and maintenance with Azure Container Registry tasks
- Tutorial: Build and deploy container images in the cloud with Azure Container Registry Tasks