Skip to content

Commit f0b2f2c

Browse files
committed
fix(docker): Add runtime dependencies for kimageformats plugins
- Add libavif16 for AVIF plugin runtime - Add libjxl0.7 for JXL plugin runtime - Fixes missing library errors preventing plugin loading - AVIF and JXL formats now properly supported in runtime
1 parent fbc1ffd commit f0b2f2c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,11 @@ RUN apt-get update && \
197197
apt-get install -y --no-install-recommends \
198198
libqt6core5compat6 \
199199
libpoppler-qt6-3t64 \
200-
qt6-image-formats-plugins \
200+
qt6-image-formats-plugins \
201201
libqt6network6t64 \
202-
libqt6sql6-sqlite && \
202+
libqt6sql6-sqlite \
203+
libavif16 \
204+
libjxl0.7 && \
203205
apt-get clean && \
204206
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
205207

0 commit comments

Comments
 (0)