Docker – More

# The `FROM` instruction specifies the base image

FROM microsoft/aspnet

# The final instruction copies the site you published earlier into the container.

COPY . /inetpub/wwwroot

RUN [“powershell”, “Add-WindowsFeature NET-WCF-HTTP-Activation45”]

RUN [“powershell”, “New-WebApplication -Name Ebix.Evolution -Site ‘Default Web Site’ -PhysicalPath C:\\inetpub\\wwwroot\\evolutionwebapp -ApplicationPool DefaultAppPool”]

RUN [“powershell”, “New-WebApplication -Name Ebix.Evolution.Service -Site ‘Default Web Site’ -PhysicalPath C:\\inetpub\\wwwroot\\evolutionserviceapp -ApplicationPool DefaultAppPool”]