Skip to content

Commit 1a7f5fb

Browse files
authored
📄 fix: PDF Image Extract Dependencies (#89)
1 parent fc7b36c commit 1a7f5fb

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ WORKDIR /app
44

55
# Install pandoc and netcat
66
RUN apt-get update \
7-
&& apt-get install -y pandoc netcat-openbsd \
7+
&& apt-get install -y --no-install-recommends \
8+
pandoc \
9+
netcat-openbsd \
10+
libgl1-mesa-glx \
11+
libglib2.0-0 \
812
&& rm -rf /var/lib/apt/lists/*
913

1014
COPY requirements.txt .

Dockerfile.lite

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ WORKDIR /app
44

55
# Install pandoc and netcat
66
RUN apt-get update \
7-
&& apt-get install -y pandoc netcat-openbsd \
7+
&& apt-get install -y --no-install-recommends \
8+
pandoc \
9+
netcat-openbsd \
10+
libgl1-mesa-glx \
11+
libglib2.0-0 \
812
&& rm -rf /var/lib/apt/lists/*
913

1014
COPY requirements.lite.txt .

0 commit comments

Comments
 (0)