doxygen/Dockerfile
Dorian Zedler f116ab481e
All checks were successful
continuous-integration/drone Build is passing
Chore: initial commit
2022-08-05 09:16:55 +02:00

16 lines
385 B
Docker

FROM alpine
WORKDIR /workspace
RUN apk add --no-cache git doxygen py3-pip texlive-full make && \
pip3 install jinja2 Pygments && \
git clone https://github.com/mosra/m.css && \
rm -rf m.css/.git && \
mv m.css /usr/lib/m.css && \
cd / && rm -rf /workspace
COPY doxygen-build /usr/local/bin/doxygen-build
WORKDIR /src
ENTRYPOINT ["/usr/local/bin/doxygen-build"]