Spaces:
Sleeping
Sleeping
Upload Dockerfile
Browse files- 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(
|
| 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 . .
|