##// END OF EJS Templates
release: Bump version 5.2.0 to 5.2.1
release: Bump version 5.2.0 to 5.2.1

File last commit:

r5546:50cf7822 merge v5.2.0 stable
r5554:a05b3b36 v5.2.1 stable
Show More
Dockerfile
39 lines | 918 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 \
auth: updated saml docs, and re-order info on plugin details for easier setup
r5505 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/*
auth: updated saml docs, and re-order info on plugin details for easier setup
r5505 RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf ./aws && \
rm awscliv2.zip
docs(build): custom docker image to build docs
r5195 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"]