Alfy Reid Thanks for reaching here!
It seems like you are encountering a CORS error while trying to access a container from your web app. CORS stands for Cross-Origin Resource Sharing, which is a security feature implemented by web browsers to prevent unauthorized access to resources on a different domain.
The error message "No Access-Control-Allow-Origin header is present on the requested source" means that the server hosting the container is not allowing requests from your web app's domain.
Acquiring an SSL certificate is not a solution to this problem. However, it is a good practice to use SSL to secure your web app's communication with the server.
To fix the CORS error, you need to configure the server hosting the container to allow requests from your web app's domain. One way to do this is by setting the Access-Control-Allow-Origin header in the server's response.
Since you mentioned that you tried using the flask_cors library and it didn't work, I suggest checking if the library is properly configured.
If you still encounter the same error, you may need to check the server's configuration and make sure that it is properly configured to allow requests from your web app's domain.
Refer to this doc link- https://learn.microsoft.com/en-us/azure/app-service/app-service-web-tutorial-rest-api