This quite a basic question. Microsoft advertises everywhere the lift and shift approach, meaning you can move old ASP.NET MVC projects (Cloud Service Webroles) into Docker Containers for a first publish on Service Fabric (SF) and only transform them later into native ASP.NET Core.
Unfortunately there is nowhere a throughout description how to do it:
- First example Lift and Shift: Microsoft's main advertisement to place old Webprojects into a container. But they only use some special "continuous delivery" approach for publishing which does not help.
- Approach with VS Docker Compose support: Only how to publish a single container as self-contained application. But it does not allow to embed the container into a whole SF Project with other services. Moreover it does NOT work with the Docker-Compose created in 1. 1 executes on my machine, can be sent to and somehow executed on the cluster. But a webapp is still not reachable from outside.
- Tutorial how to containerize and include container into SF Solution: The right direction with including the container into a solution. Unfortunately, the webproject they containerize is not a full scale ASP.NET Webproject. It is only a single python script. Therefore they can easily create a docker file in this case.
- ASP.Net Core Docker Tutorial from the Docker docs: Here is explained how to create a container, more complex than a single python script. But still, this tutorial only features a ASP.NET Core project and uses a "dotnet publish" instruction which does not exist in original ASP.NET!?
- All other tutorials for migrating ASP.NET MVC apps from old Cloud Services to SF unfortunately just explain the immediate upgrade to ASP.NET Core (eg. Here and here)
I am lost. I think the strategy should be to write an own docker file and create a container manually as in 4 and to then follow 3 to embedd this container into a SF solution. In the end the question is: How do you write the Dockerfile to containerize an ASP.NET MVC project?
Answering the end question first: An example of a dockerfile for an ASP.NET MVC:
That will copy the Web Publish output from the /publish directory to your container.
To expand a bit on the links you put in above, there are some concepts around containers that are important:
Putting the above in the light of your four bullets above: