Embed presentation
Download to read offline











![# 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/docker-windows-101-to-production-170907125806/85/Docker-on-Windows-101-to-Production-half-day-workshop-12-320.jpg)











This document discusses the use of Docker on Windows, highlighting its efficiency, portability, and security advantages over traditional virtual machines. It provides detailed steps for building, shipping, and running .NET applications using Docker images based on Windows Server Core. The document emphasizes the differences between running Docker on Windows versus Linux, demonstrating the application setup process.











![# 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/docker-windows-101-to-production-170907125806/85/Docker-on-Windows-101-to-Production-half-day-workshop-12-320.jpg)









