forked from kompetenzinventar/ki-doku
513bdc506b
also some cleaning up of README
9 lines
211 B
Docker
Executable File
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"]
|
|
|