No Fonts installed on this device!
Dockerfile
RUN apt-get update && \
apt-get install -y \
fontconfig \
fonts-dejavu-core \
fonts-liberation \
&& rm -rf /var/lib/apt/lists/*
RUN fc-cache -f -v
RUN mkdir -p /usr/share/fonts/custom && \
chown -R app:app /usr/share/fonts/custom
_pdfGenerator.AddFontFamilyMapping("Arial", "DejaVu Sans");
_pdfGenerator.AddFontFamilyMapping("Segoe UI", "DejaVu Sans");
No Fonts installed on this device!
Dockerfile