モダンな環境でレガシーASPを動かしてみるシリーズ第二弾。 Docker for Windowsで動かしています。 Windows Containerを動かすためにタスクトレイのDockerアイコンから「Switch to Windows containers…」を実行しておきましょう。 同一階層にDockerfileとASPファイルを用意します。 FROM mcr.microsoft.com/windows/servercore/iis:windowsservercore-ltsc2016 RUN powershell -NoProfile -Command Remove-Item -Recurse C:\inetpub\wwwroot\* WORKDIR /inetpub/wwwroot RUN powershell -NoProfile -Command Install-Window