##// END OF EJS Templates
fix: updated command list mapping for mercurial 6.5, after client upgrade a new command can be given which is clonebundles_manifest, we marked it explicit as pull command. Also added few more commands, fixes RCCE-111
fix: updated command list mapping for mercurial 6.5, after client upgrade a new command can be given which is clonebundles_manifest, we marked it explicit as pull command. Also added few more commands, fixes RCCE-111

File last commit:

r5343:dad82407 stable
r5484:aa514264 default
Show More
Dockerfile
24 lines | 541 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 \
curl \
zip \
graphviz \
imagemagick \
make \
&& 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"]