Skip to content

Instantly share code, notes, and snippets.

@friism
Last active May 12, 2017 14:03
Show Gist options
  • Save friism/f063ecb1c8ba7259a426a53547fe5e18 to your computer and use it in GitHub Desktop.
Save friism/f063ecb1c8ba7259a426a53547fe5e18 to your computer and use it in GitHub Desktop.
run multiple powershell scripts
FROM microsoft/windowsservercore
ADD hello.ps1 .
ADD world.ps1 .
CMD powershell .\hello.ps1 ; .\world.ps1
echo "hello"
echo "world"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment