Skip to content

Commit dd7c482

Browse files
committed
Implement the hello-world example in node
[refs #61aa1809f705]
1 parent bdc12c6 commit dd7c482

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM node:9.3.0-alpine
2+
3+
WORKDIR /usr/src/app
4+
COPY app.js .
5+
6+
CMD ["node", "app.js"]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("Hello World!")

0 commit comments

Comments
 (0)