Bagi4 commited on
Commit
821eb07
·
1 Parent(s): 3fdcae6
Files changed (2) hide show
  1. Dockerfile +5 -0
  2. main.py +1 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ COPY . .
4
+
5
+ CMD ["python", "main.py"]
main.py ADDED
@@ -0,0 +1 @@
 
 
1
+ print("hello World")