19 lines
499 B
Docker
19 lines
499 B
Docker
FROM pandoc/extra:latest-ubuntu
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
fonts-noto-core \
|
|
fonts-noto-color-emoji \
|
|
fonts-noto-cjk \
|
|
fonts-noto-mono \
|
|
fonts-dejavu \
|
|
fonts-inconsolata \
|
|
fontconfig && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p /usr/share/fonts/truetype/custom
|
|
|
|
COPY ./fonts/ /usr/share/fonts/truetype/custom/
|
|
|
|
RUN find /usr/share/fonts/truetype/custom -type f -exec chmod 644 {} \; && \
|
|
fc-cache -f -v
|