From e51502c8035be6f02523ce4f17d3878fa100d6bc Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Sun, 1 Oct 2023 12:47:32 +0200 Subject: [PATCH] Build an epub in CI A simple epub is now built (also see #24) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0ab9423..14eb209 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ 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 / \ No newline at end of file