From 9e348bd479dd38e1eb3d02e81d95c3884992cd48 Mon Sep 17 00:00:00 2001 From: Sagent Date: Thu, 11 Jun 2026 02:03:33 +0000 Subject: [PATCH] fix: add libegl1 libopengl0 for Calibre installer on Ubuntu 26.04 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fc9cd09..f69218d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ LABEL maintainer="Julien Cabillot " RUN export DEBIAN_FRONTEND="noninteractive" && \ export BUILD_PACKAGES="wget xz-utils" && \ - export RUNTIME_PACKAGES="python3 xvfb libfontconfig1 libxrender1 libxcomposite1" && \ + export RUNTIME_PACKAGES="python3 xvfb libfontconfig1 libxrender1 libxcomposite1 libegl1 libopengl0" && \ apt-get -qq update && \ apt-get -qq --yes install ${BUILD_PACKAGES} ${RUNTIME_PACKAGES} && \ ln -sf /usr/bin/python3 /usr/bin/python && \