From 802b101ede9b30939a2c4686a6c9fa057b54135a Mon Sep 17 00:00:00 2001 From: Saeed Vaziry Date: Tue, 19 May 2026 16:48:58 +0200 Subject: [PATCH] Support image processing in the container - Add runtime libraries for PNG, JPEG, WebP, fonts, and ICU so image-related workloads can run inside the Docker image. Closes #1 --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index cd2c026..c730a6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,11 @@ RUN apk add --no-cache \ supervisor \ sqlite \ sqlite-libs \ + libpng \ + libjpeg-turbo \ + libwebp \ + freetype \ + icu-libs \ tini \ bash \ curl \