Post

Traditional ASP.NET on Docker: Images

Update: due to the recent changes by Microsoft, the actual images can be different, but the way of analyzing the layers should remain the same. You are welcome to write a new blog post to replace this.

When you add Docker support to a traditional ASP.NET project (like WebForms), you probably notice a Dockerfile is added,

1
2
3
4
FROM microsoft/aspnet
ARG source
WORKDIR /inetpub/wwwroot
COPY ${source:-obj/Docker/publish} .

We can easily see that this file defines a new image, which is derived from an image of microsoft/aspnet.

Information about microsoft/aspnet can be found at Docker Hub. Its corresponding Dockerfile can be found at GitHub,

1
2
3
4
5
FROM microsoft/iis

RUN powershell -Command Add-WindowsFeature NET-Framework-45-ASPNET; \
powershell -Command Add-WindowsFeature Web-Asp-Net45; \
powershell -Command Remove-Item -Recurse C:\inetpub\wwwroot\*

In turn, microsoft/aspnet image is derived from microsoft/iis. The IIS image Dockerfile is at GitHub,

1
2
3
4
5
FROM microsoft/windowsservercore
RUN powershell -Command Add-WindowsFeature Web-Server
ADD ServiceMonitor.exe /ServiceMonitor.exe
EXPOSE 80
ENTRYPOINT ["C:\\ServiceMonitor.exe", "w3svc"]

The Docker image composition can be drawn like below,

img-description Figure 1: Docker Image Composition.

So, we can learn the following key points from Microsoft’s Dockerfile files,

  • Everything starts from a black box OS server image (windowsservercore in this case).
  • The IIS image loads the OS image, adds Web Server role, and opens port 80. If we simply run this image, we should be able to see the default web site running on IIS.
  • The ASP.NET image loads the IIS image, adds ASP.NET related role services, and then removes the contents of default web site. So if we run this image, there would be nothing served.
  • The final image for our web app loads the ASP.NET image, and puts the published web contents to the physical path of the web site. Thus, when the final image is run, our web app would be well served.

You should notice that except the base image of “windowsservercore”, we can prepare our own IIS/ASP.NET images to suit our own needs,

  • Instead of adding the whole Web Server role, we can further select which are the role services to go. (I blogged about that in this post.
  • Instead of open only port 80, we can open any suitable port(s).
  • We can further tune IIS configuration to define our own site (and its applications), and are not limited by default web site.
© Lex Li. All rights reserved. The code included is licensed under CC BY 4.0 unless otherwise noted.
Advertisement

© - Lex Li. All rights reserved.

Using the Chirpy theme for Jekyll.

Last updated on April 14, 2024