Skip to content

Commit

Permalink
📄 fix: PDF Image Extract Dependencies (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
FinnConnor authored Oct 18, 2024
1 parent fc7b36c commit 1a7f5fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ WORKDIR /app

# Install pandoc and netcat
RUN apt-get update \
&& apt-get install -y pandoc netcat-openbsd \
&& apt-get install -y --no-install-recommends \
pandoc \
netcat-openbsd \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*

COPY requirements.txt .
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile.lite
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ WORKDIR /app

# Install pandoc and netcat
RUN apt-get update \
&& apt-get install -y pandoc netcat-openbsd \
&& apt-get install -y --no-install-recommends \
pandoc \
netcat-openbsd \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*

COPY requirements.lite.txt .
Expand Down

0 comments on commit 1a7f5fb

Please sign in to comment.