Niv Sardi commited on
Commit
55a3f0e
1 Parent(s): 3e81451

Dockerfile.python: make container wait for commands, this effectively kills watcher.py

Browse files
Files changed (1) hide show
  1. Dockerfile.python +2 -1
Dockerfile.python CHANGED
@@ -10,4 +10,5 @@ COPY run.sh ./run
10
  RUN chmod +x run
11
  COPY python ./python
12
 
13
- CMD env PATH=$PATH:/usr/local/bin python3 ./python/watcher.py
 
 
10
  RUN chmod +x run
11
  COPY python ./python
12
 
13
+ CMD sh -c 'while true; do echo "🐍 waiting" ; sleep 2h; done'
14
+