I have a Container App in Azure cloud which hosts an API.
My goal is to execute a task which sends some specific requests to this API and sends e-mail with results. I want to run it twice a day. Let's say it's a single Python script task.py
What would be the best option to achieve that? So far I've seen the following options:
- Azure Functions
- Logic Apps
- Container Registry tasks???
Please note that container image used in the Container App is stored in Container Registry and contains task.py script too.