Skip to content

Commit 8a73f24

Browse files
committed
Add the ruby implementation of hello-world
[refs #64aaa3a626be]
1 parent dbcbca1 commit 8a73f24

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

developing/hello-world/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM ruby:2.4.3-alpine
2+
3+
WORKDIR /app
4+
5+
COPY app.rb .
6+
7+
CMD ruby app.rb

developing/hello-world/app.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
puts 'Hello World!'

0 commit comments

Comments
 (0)