Hi @Dengke Qi
It looks like you're running into a problem with your Azure App Service not recognizing the port you've configured for your Docker container. The message you’re seeing indicates that the container image you are using does not expose any ports, hence it defaults to port 80.
1.Ensure that your Dockerfile includes the EXPOSE instruction for the port your application is listening on. For example, if your Angular service listens on port 8000, your Dockerfile should have a line like this:
EXPOSE 8000
2.You mentioned that you configured the WEBSITES_PORT parameter. Double-check to make sure it's set correctly in your App Service settings. You can do this through the Azure portal or the Azure CLI:
az webapp config appsettings set --resource-group <your-resource-group> --name <your-app-name> --settings WEBSITES_PORT=8000
https://learn.microsoft.com/en-us/azure/container-apps/troubleshoot-target-port-settings#causes
Please accept as "Yes" if the answer provided is useful , so that you can help others in the community looking for remediation for similar issues.