Update Dockerfile

This commit is contained in:
2026-01-03 11:40:48 -08:00
committed by GitHub
parent f7864cea2a
commit 7fd687d5ed

View File

@@ -3,6 +3,15 @@ FROM node:20-bookworm-slim
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
libheif1 libheif-dev \ libheif1 libheif-dev \
libvips libvips-dev \ libvips libvips-dev \
\
# HEIC/HEIF decode support (common iPhone HEVC variants)
libde265-0 \
libheif-plugin-libde265 \
\
# Additional decoder plugin (if available in repo; improves compatibility)
libheif-plugin-ffmpegdec \
\
# PDF rendering
poppler-utils \ poppler-utils \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*