Created
October 6, 2016 14:31
-
-
Save erikh/9f908e35527a759c97100e34167c559b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from "debian" | |
3.times do | |
run "echo hi >>root-test" | |
end | |
run "mkdir /test" | |
run "chown nobody /test" | |
user "nobody" do | |
workdir "/test" do | |
3.times do | |
run "echo hi >>test" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment