Help, my deploy didn't work
Slow startup on Azure app service (Linux container)
If the container startup is too slow for the Azure app service's default limit, 240s, you can increase it by setting the app config variable WEBSITES_CONTAINER_START_TIME_LIMIT. Otherwise it's possible that a slow-starting application is stopped by the app service that perceives it as a failed start and kills the container to retry. Before setting this value: Make sure to check that this is the problem by checking the log stream first. A slow starting application's logs might look like this:
2024-01-04T14:08:32.816Z INFO - Waiting for response to warmup request for container my-web-app_1_b74bc570. Elapsed time = 232.0631155 sec
2024-01-04T14:08:48.714Z INFO - Waiting for response to warmup request for container my-web-app_1_b74bc570. Elapsed time = 247.9607366 sec
2024-01-04T14:09:04.690Z INFO - Waiting for response to warmup request for container my-web-app_1_b74bc570. Elapsed time = 263.937229 sec
2024-01-04T14:09:19.792Z INFO - Waiting for response to warmup request for container my-web-app_1_b74bc570. Elapsed time = 279.0394308 sec
2024-01-04T14:09:19.858Z INFO - Container my-web-app_1_b74bc570 for site my-web-app initialized successfully and is ready to serve requests.
Read more about this setting here. Note: Max value is 1800;