Add CI rendering

This commit is contained in:
Wiktor Kwapisiewicz 2023-09-15 14:01:36 +02:00
parent bb00bb33fe
commit e48fb01003
3 changed files with 41 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM sphinxdoc/sphinx AS build
RUN pip install myst-parser
COPY book/ /book
WORKDIR /book
RUN make html
FROM scratch
COPY --from=build /book/build/html /