diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-02-21 14:47:31 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2023-02-21 14:47:31 +0100 |
commit | 213418f181aba3866249d853c381696ea960b157 (patch) | |
tree | 9ec30f4ef8cf5a052172f62674996f6ef6b00318 /docker | |
parent | 41033fae9a44bd22367304a7cf47a19cdb947929 (diff) | |
download | vyos-build-213418f181aba3866249d853c381696ea960b157.tar.gz vyos-build-213418f181aba3866249d853c381696ea960b157.zip |
debian: T5003: Fix FRR build using old version of Sphinx
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index c222c651..2ba2125f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -257,9 +257,6 @@ RUN export LIBYANG_COMMIT="v2.0.164" && \ cd libyang && git checkout $LIBYANG_COMMIT && apkg build -i && \ cd pkg/pkgs/debian-*/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 @@ -286,6 +283,7 @@ RUN apt-get update && apt-get install -y \ python3 \ python3-dev \ python3-pytest \ + python3-sphinx \ texinfo # Packages needed for hvinfo |