BlogEngine.NET (for demos/courses/talks purposes)
371
Containerised BlogEngine.NET application running on ASP.NET 4.7 on Windows Server.
Assuming you have downloaded binaries into dist folder the dockerfile is:
FROM mcr.microsoft.com/dotnet/framework/aspnet:4.7.2-windowsservercore-1803
EXPOSE 80
# copy BlogEngine.NET
WORKDIR /inetpub/wwwroot
COPY dist/. .
# configure
COPY init.ps1 c:/
RUN powershell.exe c:\init.ps1
init.ps1 sets permissions to wwwroot folder for everyone (demo purposes, remember!):
# Ensure write permissions over web app project files
icacls C:\inetpub\wwwroot /grant Everyone:F /t /q
Content type
Image
Digest
Size
2.4 GB
Last updated
over 7 years ago
docker pull aloneguid/blogenginedotnet