An oyster-farm sensor laptop has no local Docker daemon, but the team still needs the image in Azure Container Registry. Which approach builds and lands the image without a local daemon?
Select an answer to reveal the explanation.
Short Explanation
No Docker on the laptop? Hand the Dockerfile to ACR Tasks or az acr build and let Azure be the workshop. The finished image lands in the registry without a local daemon.
Full Explanation
ACR Tasks and az acr build perform cloud-side image builds from a Dockerfile and context, then store the result in the same registry. That path removes the need for a local Docker daemon on constrained devices. Skipping containers entirely or relying only on release gates without an image build does not produce a registry artifact.