mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
- 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.
17 lines
372 B
Docker
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
|