File tree Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,23 @@ FROM python:3.11-slim
4
4
# Set working directory
5
5
WORKDIR /app
6
6
7
- # Install system dependencies including ffmpeg
7
+ # Install system dependencies
8
8
RUN apt-get update && \
9
9
apt-get install -y --no-install-recommends \
10
10
ffmpeg \
11
11
build-essential \
12
+ # OpenCV dependencies
13
+ libgl1-mesa-glx \
14
+ libglib2.0-0 \
15
+ libsm6 \
16
+ libxrender1 \
17
+ libxext6 \
18
+ # Image processing dependencies
19
+ libpng-dev \
20
+ libjpeg-dev \
21
+ # For lxml
22
+ libxml2-dev \
23
+ libxslt1-dev \
12
24
&& apt-get clean \
13
25
&& rm -rf /var/lib/apt/lists/*
14
26
Original file line number Diff line number Diff line change @@ -160,7 +160,6 @@ packaging==24.2
160
160
pandas == 2.2.3
161
161
pandocfilters == 1.5.1
162
162
parso == 0.8.4
163
- pdf2image == 1.17.0
164
163
pdfminer.six == 20240706
165
164
pi_heif == 0.22.0
166
165
pickleshare == 0.7.5
@@ -191,26 +190,21 @@ pydeck==0.9.1
191
190
pydub == 0.25.1
192
191
Pygments == 2.19.1
193
192
pylatexenc == 2.10
194
- pypandoc == 1.15
195
193
pyparsing == 3.2.1
196
194
pypdf == 5.4.0
197
195
PyPDF2 == 3.0.1
198
196
pypdfium2 == 4.30.1
199
- pyreadline3 == 3.5.4
200
197
PySocks == 1.7.1
201
- pytesseract == 0.3.13
202
198
pytest == 8.3.5
203
199
python-bidi == 0.6.6
204
200
python-dateutil == 2.9.0.post0
205
201
python-docx == 1.1.2
206
202
python-dotenv == 1.0.1
207
203
python-iso639 == 2025.2.18
208
- python-magic == 0.4.27
209
204
python-multipart == 0.0.20
210
205
python-oxmsg == 0.0.2
211
206
python-pptx == 1.0.2
212
207
pytz == 2025.1
213
- pywin32 == 307
214
208
PyYAML == 6.0.2
215
209
pyzmq == 26.3.0
216
210
qdrant-client == 1.13.3
@@ -273,7 +267,6 @@ webencodings==0.5.1
273
267
websockets == 15.0.1
274
268
Werkzeug == 3.1.3
275
269
wheel == 0.45.1
276
- win32_setctime == 1.2.0
277
270
wrapt == 1.17.2
278
271
xlrd == 2.0.1
279
272
XlsxWriter == 3.2.2
You can’t perform that action at this time.
0 commit comments