From 1a7f5fbb8c1205d461f07d2e6d46650a885540b4 Mon Sep 17 00:00:00 2001 From: Connor <36115510+ScarFX@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:30:25 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20fix:=20PDF=20Image=20Extract=20D?= =?UTF-8?q?ependencies=20(#89)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++++- Dockerfile.lite | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index edb326af..c6281b60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 . diff --git a/Dockerfile.lite b/Dockerfile.lite index cce92bbc..94012d24 100644 --- a/Dockerfile.lite +++ b/Dockerfile.lite @@ -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 .