Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -12,7 +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 && apt-get install -y
|
| 16 |
# Copy the rest of the application code
|
| 17 |
COPY . /code
|
| 18 |
|
|
|
|
| 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 tesseract-ocr
|
| 16 |
# Copy the rest of the application code
|
| 17 |
COPY . /code
|
| 18 |
|