diff options
| author | Quill <69414602+teslazonda@users.noreply.github.com> | 2026-04-28 21:11:28 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-28 13:11:28 +0100 |
| commit | f54306da7e0b49dee7f9ebaf8e9a230c589d2c64 (patch) | |
| tree | 48298e6d316c49a4e2675683bc4f331d6dbf86dc | |
| parent | 35285ccd24d4c7f24381862384c4c38c0bdf9ff8 (diff) | |
| download | vyos-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
| -rw-r--r-- | docker/Dockerfile | 4 |
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/* |
