public release 4.2.0 - see README.md and CHANGES.md for details
This commit is contained in:
30
extras/docker-docs/Dockerfile
Normal file
30
extras/docker-docs/Dockerfile
Normal file
@@ -0,0 +1,30 @@
|
||||
FROM python:3.12
|
||||
|
||||
# docker container to build PMSCO documentation
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
default-jre \
|
||||
doxygen \
|
||||
gawk \
|
||||
git \
|
||||
graphviz \
|
||||
pandoc \
|
||||
wget \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN pip install --no-cache-dir \
|
||||
doxypypy \
|
||||
meson \
|
||||
meson-python \
|
||||
ninja \
|
||||
pynose
|
||||
|
||||
RUN wget -O plantuml.jar https://sourceforge.net/projects/plantuml/files/plantuml.jar/download
|
||||
ENV PLANTUML_JAR_PATH=/app/plantuml.jar
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["sh"]
|
||||
|
||||
Reference in New Issue
Block a user