Last active
June 26, 2019 22:31
-
-
Save stefansedich/42dd4977bf1c48514b59ca6350e9c1f2 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 ruby | |
copy foo.rb ./ | |
RUN ruby foo.rb |
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
# Comment out to exhibit buffered output | |
STDOUT.sync = true | |
10.times do | |
puts("foo") | |
end | |
sleep(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment