##// END OF EJS Templates
docs(5.x): added new tempalte and bootstrapped 5.X docs
docs(5.x): added new tempalte and bootstrapped 5.X docs

File last commit:

r5343:dad82407 stable
r5343:dad82407 stable
Show More
Dockerfile
33 lines | 733 B | text/x-dockerfile-config | DockerLexer
docs(build): custom docker image to build docs
r5195 FROM python:3.12.0-bullseye
feat(docs): new docs build logic...
r5193
WORKDIR /project
docs(build): custom docker image to build docs
r5195
RUN apt-get update \
&& apt-get install --no-install-recommends --yes \
docs(5.x): added new tempalte and bootstrapped 5.X docs
r5343 curl \
zip \
graphviz \
dvipng \
imagemagick \
make \
latexmk \
texlive-latex-recommended \
texlive-latex-extra \
texlive-xetex \
fonts-freefont-otf \
texlive-fonts-recommended \
texlive-lang-greek \
tex-gyre \
docs(build): custom docker image to build docs
r5195 && apt-get autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN \
python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir Sphinx Pillow
feat(docs): new docs build logic...
r5193 ADD requirements_docs.txt /project
docs(build): custom docker image to build docs
r5195 RUN \
python3 -m pip install -r requirements_docs.txt
CMD ["sphinx-build", "-M", "html", ".", "_build"]