Embed presentation
Downloaded 21 times










![# escape=`
FROM microsoft/windowsservercore
SHELL ["powershell", "-Command"]
RUN Add-WindowsFeature Web-server, `
NET-Framework-45-ASPNET, Web-Asp-Net45; `
Remove-Website -Name 'Default Web Site'
COPY ProductLaunchWeb /product-launch-web
RUN New-Website -Name 'product-launch' `
-PhysicalPath 'C:product-launch-web' -Port 80
EXPOSE 80
COPY bootstrap.ps1 /
ENTRYPOINT ./bootstrap.ps1](https://image.slidesharecdn.com/velvet-revolution-modernizing-dotnet-with-docker-final-170120125844/75/The-Velvet-Revolution-Modernizing-Traditional-ASP-NET-Apps-with-Docker-11-2048.jpg)



























The document discusses the use of Docker for modernizing traditional ASP.NET applications, emphasizing the ease of transitioning to Docker for consistent deployment and management. It highlights benefits such as improved performance and the ability to break down monolithic applications into microservices. The author, Elton Stoneman, also touches on Docker's maturity as a platform and resources available for developers looking to adopt Docker.










![# escape=`
FROM microsoft/windowsservercore
SHELL ["powershell", "-Command"]
RUN Add-WindowsFeature Web-server, `
NET-Framework-45-ASPNET, Web-Asp-Net45; `
Remove-Website -Name 'Default Web Site'
COPY ProductLaunchWeb /product-launch-web
RUN New-Website -Name 'product-launch' `
-PhysicalPath 'C:product-launch-web' -Port 80
EXPOSE 80
COPY bootstrap.ps1 /
ENTRYPOINT ./bootstrap.ps1](https://image.slidesharecdn.com/velvet-revolution-modernizing-dotnet-with-docker-final-170120125844/75/The-Velvet-Revolution-Modernizing-Traditional-ASP-NET-Apps-with-Docker-11-2048.jpg)

























