Spaces:
Sleeping
Sleeping
typo
Browse files- .vscode/settings.json +3 -0
- Dockerfile +1 -1
.vscode/settings.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cSpell.words": ["tesseract"]
|
3 |
+
}
|
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ ENV HF_HOME /tmp
|
|
4 |
|
5 |
WORKDIR /code
|
6 |
|
7 |
-
RUN apt-get update && apt-get install -y libgl1-mesa-glx libboost-thread1.74.0
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
10 |
|
|
|
4 |
|
5 |
WORKDIR /code
|
6 |
|
7 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx libboost-thread1.74.0 tesseract-ocr && rm -rf /var/lib/apt/lists/*
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
10 |
|