summaryrefslogtreecommitdiff
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorQuill <69414602+teslazonda@users.noreply.github.com>2026-04-28 21:11:28 +0900
committerGitHub <noreply@github.com>2026-04-28 13:11:28 +0100
commitf54306da7e0b49dee7f9ebaf8e9a230c589d2c64 (patch)
tree48298e6d316c49a4e2675683bc4f331d6dbf86dc /docker/Dockerfile
parent35285ccd24d4c7f24381862384c4c38c0bdf9ff8 (diff)
downloadvyos-documentation-f54306da7e0b49dee7f9ebaf8e9a230c589d2c64.tar.gz
vyos-documentation-f54306da7e0b49dee7f9ebaf8e9a230c589d2c64.zip
Add missing Python dependencies (#1854)
The vyos-documentation docker container currently fails to run without adding the following dependencies: - sphinx_llms_txt - sphinx_sitemap
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index d8a71872..fee5c91c 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -34,7 +34,9 @@ RUN pip3 install --break-system-packages \
sphinx-notfound-page \
lxml \
myst-parser \
- sphinx_design
+ sphinx_design \
+ sphinx_llms_txt \
+ sphinx_sitemap
# Cleanup
RUN rm -rf /var/lib/apt/lists/*