Skip to content

Instantly share code, notes, and snippets.

@alexsandro-xpt
Created November 22, 2016 19:53
Show Gist options
  • Select an option

  • Save alexsandro-xpt/c32d6cc3badb5deb7c1ab3c32523c12b to your computer and use it in GitHub Desktop.

Select an option

Save alexsandro-xpt/c32d6cc3badb5deb7c1ab3c32523c12b to your computer and use it in GitHub Desktop.
Install Crystal Reports
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