Skip to content

Commit 42f02a2

Browse files
fix: code review and docker file:
1 parent 62c2be2 commit 42f02a2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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
8191
RUN ARCH=$(uname -m) && \
8292
if [ "$ARCH" = "aarch64" ]; then \

src/converters/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)