https://github.com/goffinet/pandoc-latex
Pandoc Latex container image
https://github.com/goffinet/pandoc-latex
Last synced: 3 months ago
JSON representation
Pandoc Latex container image
- Host: GitHub
- URL: https://github.com/goffinet/pandoc-latex
- Owner: goffinet
- Created: 2021-10-30T10:19:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-18T19:34:26.000Z (about 4 years ago)
- Last Synced: 2025-11-30T04:07:17.893Z (6 months ago)
- Language: Dockerfile
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pandoc-latex container image

```
FROM pandoc/latex:2.16.2
LABEL org.opencontainers.image.source https://github.com/goffinet/pandoc-latex
RUN tlmgr option repository http://mirror.ctan.org/systems/texlive/tlnet \
tlmgr update \
&& tlmgr install csquotes mdframed needspace sourcesanspro ly1 mweights \
sourcecodepro titling pagecolor epstopdf zref footnotebackref subfig float \
&& apk add --update ghostscript
# Install Node and mermaid-filter
ENV CHROME_BIN="/usr/bin/chromium-browser" \
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
RUN apk add --update udev ttf-freefont chromium npm \
freetype \
freetype-dev \
msttcorefonts-installer \
fontconfig \
font-noto \
terminus-font \
ttf-opensans \
font-misc-misc \
font-croscore \
&& update-ms-fonts \
&& fc-cache -f \
&& rm -rf /var/cache/* \
&& npm install -g mermaid-filter@1.4.5 --unsafe-perm=true
RUN fc-list : family | cut -f1 -d"," | sort | uniq
```