File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,16 @@ RUN apt-get update && apt-get install -y \
7777 --no-install-recommends \
7878 && rm -rf /var/lib/apt/lists/*
7979
80+ # Install Python, pipx, and MarkItDown (PEP 668 compliant)
81+ RUN apt-get update && apt-get install -y \
82+ python3 \
83+ python3-pip \
84+ pipx \
85+ && pipx install "markitdown[all]" \
86+ && pipx ensurepath \
87+ && rm -rf /var/lib/apt/lists/*
88+
89+
8090# Install VTracer binary
8191RUN ARCH=$(uname -m) && \
8292 if [ "$ARCH" = "aarch64" ]; then \
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ const properties: Record<
128128 properties : propertiesVtracer ,
129129 converter : convertVtracer ,
130130 } ,
131- MarkitDown : {
131+ markitDown : {
132132 properties : propertiesMarkitdown ,
133133 converter : convertMarkitdown ,
134134 } ,
You can’t perform that action at this time.
0 commit comments