How do I specify a PowerShell script as a Docker container entry point? How do I specify a PowerShell script as a Docker container entry point? powershell powershell

How do I specify a PowerShell script as a Docker container entry point?


Yes you can specify powershell as default shell like below on top of DOCKERFILESHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'Continue'; $verbosePreference='Continue';"]

I'm not sure you can do anything about time it takes to spin down your VM