openpgp-notes/Dockerfile

17 lines
712 B
Docker
Raw Normal View History

2023-12-13 14:15:58 +01:00
# SPDX-FileCopyrightText: 2023 The "Notes on OpenPGP" project
# SPDX-License-Identifier: CC0-1.0
FROM archlinux:latest AS build
COPY book/ /book
WORKDIR /book
# fix EPUB rendering: https://github.com/sphinx-doc/sphinx/issues/11598
RUN \
pacman -Sy --needed --noconfirm archlinux-keyring \
2023-12-24 17:12:43 +01:00
&& pacman -Syu --needed --noconfirm inkscape make noto-fonts patch python-myst-parser python-sphinx python-sphinxext-opengraph python-sphinx-sitemap ttf-montserrat \
2023-12-13 14:15:58 +01:00
&& patch -Np1 -d /usr/lib/python3.11/site-packages/ -i /book/patches/sphinx-11766.patch \
&& make epub html
FROM scratch
COPY --from=build /book/build/html /
COPY --from=build --chown=644 /book/build/epub/OpenPGP_for_application_developers.epub /