mirror of
https://codeberg.org/openpgp/notes.git
synced 2024-11-23 08:02:05 +01:00
121e352b59
Signed-off-by: David Runge <dave@sleepmap.de>
13 lines
No EOL
340 B
Docker
13 lines
No EOL
340 B
Docker
# SPDX-FileCopyrightText: 2023 The "Notes on OpenPGP" project
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
FROM sphinxdoc/sphinx AS build
|
|
RUN pip install myst-parser
|
|
COPY book/ /book
|
|
WORKDIR /book
|
|
RUN make html
|
|
RUN make epub
|
|
|
|
FROM scratch
|
|
COPY --from=build /book/build/html /
|
|
COPY --from=build /book/build/epub/OpenPGPforapplicationdevelopers.epub / |