Created
November 22, 2016 19:53
-
-
Save alexsandro-xpt/c32d6cc3badb5deb7c1ab3c32523c12b to your computer and use it in GitHub Desktop.
Install Crystal Reports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM microsoft/iis | |
| SHELL ["powershell", "-command"] | |
| # Install ASP.NET | |
| RUN Install-WindowsFeature NET-Framework-45-ASPNET; ` | |
| Install-WindowsFeature Web-Asp-Net45 | |
| RUN mkdir C:\cry | |
| COPY CRRuntime_64bit_13_0_5.msi C:\cry | |
| RUN ["msiexec.exe", "/i", "C:\\cry\\CRRuntime_64bit_13_0_5.msi", "/qn"] | |
| # Configure website | |
| EXPOSE 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment