0ad/build/jenkins/dockerfiles/docs-tools.Dockerfile
Itms 75da070076 Generate technical docs from CI/CD
- Generate entity.rng as part of the nightly build, refs #6976.
 - Generate docs from a checkout of the nightly build.
 - Publish them to docs.wildfiregames.com.
2024-10-26 19:33:25 +02:00

17 lines
372 B
Docker

FROM debian:latest
ARG DEBIAN_FRONTEND=noninteractive
ARG DEBCONF_NOWARNINGS="yes"
RUN apt-get -qqy update && apt-get install -qqy --no-install-recommends \
ca-certificates \
cmake \
doxygen \
git-lfs \
graphviz \
make \
python3 \
subversion \
xsltproc \
&& apt-get clean
RUN git lfs install --system --skip-smudge