ki-doku/Dockerfile
jaschop 513bdc506b
added Dockerfile & docker build instructions in README
also some cleaning up of README
2023-09-28 17:59:12 +02:00

9 lines
211 B
Docker
Executable File

FROM sphinxdoc/sphinx-latexpdf
RUN pip3 install sphinxcontrib-plantuml
RUN apt-get update && apt-get install plantuml locales-all -y
ENV LC_ALL="de_DE.UTF8"
WORKDIR /doc
CMD ["make", "latexpdf", "singlehtml"]