Update Dockerfile to install tesseract-ocr alongside libgl1-mesa-glx
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -12,7 +12,7 @@ RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
|
12 |
|
13 |
# Install dependencies
|
14 |
RUN apt-get update && \
|
15 |
-
apt-get install -y libgl1-mesa-glx
|
16 |
|
17 |
# Install requirements.txt
|
18 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
12 |
|
13 |
# Install dependencies
|
14 |
RUN apt-get update && \
|
15 |
+
apt-get install -y libgl1-mesa-glx tesseract-ocr
|
16 |
|
17 |
# Install requirements.txt
|
18 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|