mirror of
https://codeberg.org/openpgp/notes.git
synced 2024-11-23 08:02:05 +01:00
9 lines
155 B
Text
9 lines
155 B
Text
|
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 /
|