You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
224 B

FROM microsoft/aspnet:4.7
RUN powershell -NoProfile -Command Remove-Item -Recurse C:\inetpub\wwwroot\*
WORKDIR /inetpub/wwwroot
COPY Dockerfile.ps1 .
RUN powershell -executionpolicy bypass .\Dockerfile.ps1
COPY build/ .