[ASP.NET CORE MVC] help with docker
So im trying to containerize my app with docker. I was able to get it working locally. but here is the problem: throughout my client side code where I fetch data from my api, I have hard coded the IIS Express url (https://localhost:44378/), and that is different than dockers URL(https://localhost:8080/). so whenever I launch my app with IIS Express instead of docker, all the fetches fail cause im pointing to the wrong port (also theres thing thing where https wont work but http will but ill worry about that later).
