From 8f5f9641c79143794b5274b9d70110957b6df361 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Thu, 12 Mar 2026 10:33:28 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20libgl1-mesa-glx=20=E2=86=92=20libgl1=20(?= =?UTF-8?q?Debian=20bookworm)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- paddleocr-service/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddleocr-service/Dockerfile b/paddleocr-service/Dockerfile index e10f22c..63a85bf 100644 --- a/paddleocr-service/Dockerfile +++ b/paddleocr-service/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.11-slim WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends \ - libgl1-mesa-glx libglib2.0-0 curl \ + libgl1 libglib2.0-0 curl \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt .