Spaces:
Runtime error
Runtime error
Witold Wydmański
commited on
Commit
·
2274cc5
1
Parent(s):
1506ae7
fix: add GCC to docker
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
FROM python:3.10-slim
|
2 |
WORKDIR /code
|
3 |
|
|
|
|
|
4 |
# Install tesseract
|
5 |
RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev libleptonica-dev pkg-config
|
6 |
|
|
|
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 |
|