update
Browse files- Dockerfile +5 -0
- 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")
|