Skip to content

Commit a5357a4

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

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 python:3.6.4-alpine
2+
3+
WORKDIR /usr/src/app
4+
COPY app.py .
5+
6+
CMD ["python", "app.py"]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Hello World!")

0 commit comments

Comments
 (0)