1.新建.netcore web项目
2.新建DockerFile把“Copy to Output Directory”设置为”Copy if newer“
关于DockerFile的详细配置请看:https://www.cnblogs.com/chenyishi/p/9947662.html
在Progran.cs文件中添加代码:
public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args).UseUrls("*:5000") //设置端口 .UseStartup<Startup>();