Neurolingua
commited on
Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -12,10 +12,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
12 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
13 |
|
14 |
# Install EasyOCR dependencies
|
15 |
-
RUN apt-get update &&
|
16 |
-
apt-get install -y \
|
17 |
-
libgl1-mesa-glx \
|
18 |
-
libglib2.0-0
|
19 |
# Copy the rest of the application code
|
20 |
COPY . /code
|
21 |
|
|
|
12 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
13 |
|
14 |
# Install EasyOCR dependencies
|
15 |
+
RUN apt-get update && apt-get install -y tessaract-ocr
|
|
|
|
|
|
|
16 |
# Copy the rest of the application code
|
17 |
COPY . /code
|
18 |
|