takomattyy commited on
Commit
a08bca9
·
verified ·
1 Parent(s): db10255

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -22,7 +22,7 @@ COPY requirements.txt .
22
  RUN pip install --no-cache-dir -r requirements.txt
23
 
24
  # Download PaddleOCR models during build to speed up first run
25
- RUN python -c "from paddleocr import PaddleOCR; ocr = PaddleOCR(use_angle_cls=False, lang='en', show_log=False)"
26
 
27
  # Copy application code
28
  COPY . .
 
22
  RUN pip install --no-cache-dir -r requirements.txt
23
 
24
  # Download PaddleOCR models during build to speed up first run
25
+ RUN python -c "from paddleocr import PaddleOCR; ocr = PaddleOCR(lang='en')"
26
 
27
  # Copy application code
28
  COPY . .