We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0f0de commit 3f15c39Copy full SHA for 3f15c39
Dockerfile
@@ -9,4 +9,4 @@ RUN pip3 install -r requirements.txt
9
10
COPY . .
11
12
-CMD [ "python3", "import_recent_changes.py"]
+CMD [ "./script.sh" ]
script.sh
@@ -0,0 +1,6 @@
1
+while true
2
+do
3
+ pkill -f import_recent_changes.py &
4
+ python import_recent_changes.py &
5
+ sleep 300
6
+done
0 commit comments