使用 pandoc 来生成 pdf 文档,支持中文字体 。
FROM yunnysunny/pandoc-pdf:latest AS build-stage
COPY . /data
RUN pandoc *.md -o gen.pdf --pdf-engine=weasyprint \
--table-of-contents --toc-depth=4
FROM scratch AS export-stage
COPY --from=build-stage /data/gen.pdf /
1.0.0
Content type
Image
Digest
sha256:8b8ca7bb8…
Size
272.8 MB
Last updated
about 2 years ago
docker pull yunnysunny/pandoc-pdf