Skip to content

Instantly share code, notes, and snippets.

@friism
Last active May 12, 2017 14:03
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