Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/Dockerfile.backend
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \
# Clean up system Python installation
RUN find /usr/local -name "*.pyc" -delete && \
find /usr/local -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true && \
find /usr/local -name "tests" -type d -exec rm -rf {} + 2>/dev/null || true && \
find /usr/local -name "tests" -type d ! -path "*/numpy/*" -exec rm -rf {} + 2>/dev/null || true && \
find /usr/local -name "*.egg-info" -type d -exec rm -rf {} + 2>/dev/null || true

# Final stage - clean runtime
Expand Down
3 changes: 2 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies = [
"validators>=0.34.0",
"psutil (>=7.0.0,<8.0.0)",
"docling (>=2.0.0)",
"transformers (>=4.46.0)",
"transformers[vision] (>=4.46.0)",
"pydub (>=0.25.1,<0.26.0)",
"uuid-extension (>=0.2.0,<0.3.0)",
"spacy (>=3.7.0,<4.0.0)",
Expand Down
Loading