Commit
·
b723aad
1
Parent(s):
37d982e
Added -y to tesseract-ocr installation in Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -3,8 +3,8 @@ FROM public.ecr.aws/docker/library/python:3.11.9-slim-bookworm
|
|
3 |
# Install system dependencies. Need to specify -y for poppler to get it to install
|
4 |
RUN apt-get update \
|
5 |
&& apt-get install -y \
|
6 |
-
tesseract-ocr \
|
7 |
-
libtesseract-dev \
|
8 |
poppler-utils -y \
|
9 |
&& apt-get clean \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
|
|
3 |
# Install system dependencies. Need to specify -y for poppler to get it to install
|
4 |
RUN apt-get update \
|
5 |
&& apt-get install -y \
|
6 |
+
tesseract-ocr -y \
|
7 |
+
#libtesseract-dev -y \
|
8 |
poppler-utils -y \
|
9 |
&& apt-get clean \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|