@QA testing team Thanks for reaching out to Microsoft Q&A, apologize for any inconvenience caused on this.
As mentioned in this documentation, App Service has no control about which port your container listens on. What it does need is to know which port to forward requests to. If your container listens to port 80 or 8080, App Service is able to automatically detect it. If it listens to any other port, you need to set the WEBSITES_PORT app setting to the port number, and App Service forwards requests to that port in the container.
Post adding the WEBSITES_PORT if you are still facing the issue. I would suggest you review the docker container logs by Enabling application logging or access the container logs via (https://<app-name>.scm.azurewebsites.net/api/logs/docker/zip
endpoint) 1 to understand more what exactly causing the issues.