aboutsummaryrefslogtreecommitdiff
path: root/util/docker
diff options
context:
space:
mode:
authorNicholas Chin <nic.c3.14@gmail.com>2023-02-22 11:55:22 -0700
committerMartin L Roth <gaumless@gmail.com>2023-08-21 22:39:06 +0000
commit2fe63a1ad67846eb9d69207c2baf57d7527c28ae (patch)
tree4e4450593727c1173389e1466a2b0a74559cad1d /util/docker
parentfd63492205dfb22fdcad663f6b1c6a589ac4b035 (diff)
util/docker: Update Dockerfiles for building the documentation
The doc.coreboot.org container is several years out of date, using the three year old Alpine 3.8 as the base image along with Sphinx related pip packages which are even older. Accordingly, update the documentation related pip packages in the coreboot-jenkins-node container as well. - Update doc.coreboot.org to Alpine 3.18.3 - Update documentation related pip packages on coreboot-jenkins-node and doc.coreboot.org to the latest versions on PyPI - Update Sphinx to 6.2.1 as the latest version of sphinx_rtd_theme does not yet support sphinx >= 7 The updates also noticeably improve performance, dropping documentation build times from ~75 s down to ~42 s on my system from the Alpine+Python updates alone, and further down to ~35 s with the rest of the updates. TEST: The documentation builds and renders properly when built using the updated container. Change-Id: I38dfd22ee71c3779ab5fd3b3060e4675e9e3fe54 Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/73159 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/docker')
-rw-r--r--util/docker/coreboot-jenkins-node/Dockerfile12
-rw-r--r--util/docker/doc.coreboot.org/Dockerfile24
-rwxr-xr-xutil/docker/doc.coreboot.org/ditaa.sh2
3 files changed, 18 insertions, 20 deletions
diff --git a/util/docker/coreboot-jenkins-node/Dockerfile b/util/docker/coreboot-jenkins-node/Dockerfile
index de1ccbd866..ae29e435ed 100644
--- a/util/docker/coreboot-jenkins-node/Dockerfile
+++ b/util/docker/coreboot-jenkins-node/Dockerfile
@@ -75,12 +75,12 @@ RUN echo "export PATH=$PATH:/opt/xgcc/bin" >> /home/coreboot/.bashrc && \
pip3 install --upgrade --no-cache-dir pip \
&& pip3 install --no-cache-dir \
setuptools==58.2.0 \
- jinja2==3.0.3 \
- recommonmark===0.5.0 \
- sphinx===1.8.3 \
- sphinxcontrib-ditaa===0.6 \
- sphinx_autobuild===0.7.1 \
- sphinx_rtd_theme===0.4.2 \
+ jinja2==3.1.2 \
+ recommonmark===0.7.1 \
+ sphinx===6.2.1 \
+ sphinxcontrib-ditaa===1.0.2 \
+ sphinx_autobuild===2021.3.14 \
+ sphinx_rtd_theme===1.2.2 \
&& mkdir -p /home/coreboot/.ssh && \
echo "{{SSH_KEY}}" > /home/coreboot/.ssh/authorized_keys && \
chmod 0700 /home/coreboot/.ssh && \
diff --git a/util/docker/doc.coreboot.org/Dockerfile b/util/docker/doc.coreboot.org/Dockerfile
index a2e8f7b299..df741d81df 100644
--- a/util/docker/doc.coreboot.org/Dockerfile
+++ b/util/docker/doc.coreboot.org/Dockerfile
@@ -1,23 +1,21 @@
-FROM alpine:3.8
+FROM alpine:3.18.3
COPY makeSphinx.sh /makeSphinx.sh
-ADD https://sourceforge.net/projects/ditaa/files/ditaa/0.9/ditaa0_9.zip/download /tmp/ditaa.zip
-
-RUN apk add --no-cache python3 make bash git openjdk8-jre ttf-dejavu fontconfig \
+RUN apk add --no-cache python3 py3-pip make bash git openjdk8-jre ttf-dejavu fontconfig \
&& pip3 install --upgrade --no-cache-dir pip \
&& pip3 install --no-cache-dir \
- jinja2==3.0.3 \
- recommonmark===0.5.0 \
- sphinx===1.8.3 \
- sphinxcontrib-ditaa===0.6 \
- sphinx_autobuild===0.7.1 \
- sphinx_rtd_theme===0.4.2 \
+ jinja2==3.1.2 \
+ recommonmark===0.7.1\
+ sphinx===6.2.1 \
+ sphinxcontrib-ditaa===1.0.2 \
+ sphinx_autobuild===2021.3.14 \
+ sphinx_rtd_theme===1.2.2 \
&& chmod 755 /makeSphinx.sh
-RUN cd /tmp \
- && unzip ditaa.zip \
- && mv ditaa0_9.jar /usr/lib
+ADD https://github.com/stathissideris/ditaa/releases/download/v0.11.0/ditaa-0.11.0-standalone.jar \
+ /usr/lib/ditaa-0.11.0-standalone.jar
+
ADD ditaa.sh /usr/bin/ditaa
VOLUME /data-in /data-out
diff --git a/util/docker/doc.coreboot.org/ditaa.sh b/util/docker/doc.coreboot.org/ditaa.sh
index 637379f3e7..305deefdf2 100755
--- a/util/docker/doc.coreboot.org/ditaa.sh
+++ b/util/docker/doc.coreboot.org/ditaa.sh
@@ -1,2 +1,2 @@
#!/usr/bin/env sh
-exec java -jar /usr/lib/ditaa0_9.jar $*
+exec java -jar /usr/lib/ditaa-0.11.0-standalone.jar $*