Skip to content

Commit db60806

Browse files
Merge pull request #57 from souvikmajumder26/dev-actions
Updated Dockerflie and requirements
2 parents 9f011cd + a31b631 commit db60806

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

Dockerfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,23 @@ FROM python:3.11-slim
44
# Set working directory
55
WORKDIR /app
66

7-
# Install system dependencies including ffmpeg
7+
# Install system dependencies
88
RUN apt-get update && \
99
apt-get install -y --no-install-recommends \
1010
ffmpeg \
1111
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 \
1224
&& apt-get clean \
1325
&& rm -rf /var/lib/apt/lists/*
1426

requirements.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ packaging==24.2
160160
pandas==2.2.3
161161
pandocfilters==1.5.1
162162
parso==0.8.4
163-
pdf2image==1.17.0
164163
pdfminer.six==20240706
165164
pi_heif==0.22.0
166165
pickleshare==0.7.5
@@ -191,26 +190,21 @@ pydeck==0.9.1
191190
pydub==0.25.1
192191
Pygments==2.19.1
193192
pylatexenc==2.10
194-
pypandoc==1.15
195193
pyparsing==3.2.1
196194
pypdf==5.4.0
197195
PyPDF2==3.0.1
198196
pypdfium2==4.30.1
199-
pyreadline3==3.5.4
200197
PySocks==1.7.1
201-
pytesseract==0.3.13
202198
pytest==8.3.5
203199
python-bidi==0.6.6
204200
python-dateutil==2.9.0.post0
205201
python-docx==1.1.2
206202
python-dotenv==1.0.1
207203
python-iso639==2025.2.18
208-
python-magic==0.4.27
209204
python-multipart==0.0.20
210205
python-oxmsg==0.0.2
211206
python-pptx==1.0.2
212207
pytz==2025.1
213-
pywin32==307
214208
PyYAML==6.0.2
215209
pyzmq==26.3.0
216210
qdrant-client==1.13.3
@@ -273,7 +267,6 @@ webencodings==0.5.1
273267
websockets==15.0.1
274268
Werkzeug==3.1.3
275269
wheel==0.45.1
276-
win32_setctime==1.2.0
277270
wrapt==1.17.2
278271
xlrd==2.0.1
279272
XlsxWriter==3.2.2

0 commit comments

Comments
 (0)