How to add Docker support for Asp.Net Core 2.0 aimed at the full .Net Framework 4.7

I have an ASP.Net Core 2.0 application for targeting the .NET Framework 4.7 (full). I want to use Docker for it, but VS 2017 15.5 does not allow me to add Docker support. (this is not supported by the jet). My question is: are there any problems around this problem. If not, can I still use docker with this project and debug it in VS 2017? Please help Thanks

Update I need to use .NET full version because I use third-party libraries that do not support Jet.net, like NHibernate, and I do not want to use EF Core. I also rely on microservices architecture and want each mecroservice to be deployed in its own container.

+6
source share
1 answer

Have you tried this dockerfile

he has both .Net Core 2.0, and so.Net Framework 4.7

and this is the full description on the docker hub

0
source

All Articles