Spaces:
Runtime error
Runtime error
Witold Wydmański
commited on
Commit
•
49539f1
1
Parent(s):
2274cc5
fix: add more packages
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
FROM python:3.10-slim
|
2 |
WORKDIR /code
|
3 |
|
4 |
-
# Install gcc
|
5 |
-
RUN apt-get update && apt-get install -y gcc
|
|
|
6 |
# Install tesseract
|
7 |
RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev libleptonica-dev pkg-config
|
8 |
|
|
|
1 |
FROM python:3.10-slim
|
2 |
WORKDIR /code
|
3 |
|
4 |
+
# Install gcc and cc1plus
|
5 |
+
RUN apt-get update && apt-get install -y gcc g++ make
|
6 |
+
|
7 |
# Install tesseract
|
8 |
RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev libleptonica-dev pkg-config
|
9 |
|