Thanks for reaching out.
By default, Azure Container Apps run on UTC. If you’d like your application to use Saudi Arabia local time (UTC+3) without modifying your database logic or converting times in the app, you can configure the time zone directly in the container by setting the TZ
environment variable.
You can do this by adding the following environment variable to your Container App configuration:
Name: TZ
Value: Asia/Riyadh
This setting ensures your .NET Core application running inside the container uses the correct local time (Arab Standard Time), helping you maintain accurate datetime values in line with your business requirements in Saudi Arabia.
Ref:
https://luke.geek.nz/azure/change-timezone-azure-container-app/