tfqdeadlo commited on
Commit
1e983c1
·
verified ·
1 Parent(s): 08c6dc9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -6,4 +6,5 @@ COPY . .
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
+ # Pinger aur Uvicorn dono ko ek saath chala rahe hain
10
+ CMD ["sh", "-c", "python pinger.py & uvicorn app:app --host 0.0.0.0 --port 7860"]