Azure Container Apps for Micro Frontend
This will be our app 's initial setup In the pre-Azure changes, 8081 was the port for remote-app and 8080 for host-app as seen from here GITHUB Deploying this on Azure as a Container App. Note: Docker is like a ready-to-eat meal —it’s already cooked and packed, so you can take it anywhere. Azure Container Registry (ACR) is like a fridge where you store your meal until you need it. Azure Container Apps (ACA) is like a microwave or chef that heats it up and serves it when you're ready to eat. So, Docker preps the meal, ACR stores it, and ACA serves it hot when needed! As soon as you prep a meal, first store it first in the ACR fridge. And then serve it on need basis from ACA Docker If you think about the application lifecycle—setting up the environment, adding the package.json file, installing dependencies, bringing in your code, building it, and finally running the application—you simply write these steps in an organized way inside a Dockerfile . This ensures everyt...