tarujain8 commited on
Commit
b9d9b7d
·
verified ·
1 Parent(s): 5a4318f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -8,6 +8,8 @@ RUN apt-get update && apt-get install -y tesseract-ocr
8
 
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
 
 
11
  EXPOSE 7860
12
 
13
- CMD ["uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "7860"]
 
8
 
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
+ RUN chmod +x start.sh
12
+
13
  EXPOSE 7860
14
 
15
+ CMD ["./start.sh"]