diff options
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 4536132d..e99b5774 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -278,6 +278,9 @@ RUN export LIBYANG_COMMIT="v2.0.164" && \ cd libyang && git checkout $LIBYANG_COMMIT && apkg build -i && \ cd pkg/pkgs/debian-11/libyang2_* && dpkg -i *.deb +# FRR documentation also has a dependency on an up to date spinx version +RUN pip install sphinx==4.0.2 + # Packages needed to build FRR itself # https://github.com/FRRouting/frr/blob/master/doc/developer/building-libyang.rst # for more info @@ -304,7 +307,6 @@ RUN apt-get update && apt-get install -y \ python3 \ python3-dev \ python3-pytest \ - python3-sphinx \ texinfo # Packages needed for hvinfo |