fix: code review and docker file:

This commit is contained in:
Sahil 2025-12-25 23:04:23 +05:30
parent 62c2be2592
commit 42f02a227c
2 changed files with 11 additions and 1 deletions

View file

@ -77,6 +77,16 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Install Python, pipx, and MarkItDown (PEP 668 compliant)
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
pipx \
&& pipx install "markitdown[all]" \
&& pipx ensurepath \
&& rm -rf /var/lib/apt/lists/*
# Install VTracer binary
RUN ARCH=$(uname -m) && \
if [ "$ARCH" = "aarch64" ]; then \