This will allow the Docker tools team to not modify user code after a new app is created. ``` var urls = Environment.GetEnvironmentVariable("ASPNETCORE_URLS") ?? "http://localhost:5000"; var host = new WebHostBuilder() .UseUrls(urls) .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) .UseIISIntegration() .UseStartup<Startup>() .Build(); ```
This will allow the Docker tools team to not modify user code after a new app is created.