commit test code

This commit is contained in:
kangzemin 2025-06-02 02:42:20 +08:00
parent 6330d12a97
commit d0e9defdc6
2 changed files with 11 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM docker.harbor.com:8086/library/python:3.8
WORKERDIR /app
ADD . .
CMD ["ptyhon","main.py"]

6
main.py Normal file
View File

@ -0,0 +1,6 @@
import time
while True:
print("hello")
time.sleep(1)