Spaces:
Runtime error
Runtime error
Commit
·
8762287
1
Parent(s):
3ac452f
check ocr
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -11,6 +11,12 @@ RUN apt-get update && apt-get install -y \
|
|
11 |
libgl1-mesa-glx \
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
# Set working directory
|
15 |
WORKDIR /app
|
16 |
|
|
|
11 |
libgl1-mesa-glx \
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
13 |
|
14 |
+
# Ensure Tesseract is in the PATH - include both possible locations
|
15 |
+
ENV PATH="/usr/bin:/usr/local/bin:${PATH}"
|
16 |
+
|
17 |
+
# Verify Tesseract installation
|
18 |
+
RUN tesseract --version
|
19 |
+
|
20 |
# Set working directory
|
21 |
WORKDIR /app
|
22 |
|