From: Igor Ryzhov Date: Thu, 27 May 2021 12:57:03 +0000 (+0300) Subject: docker: fix ubuntu containers X-Git-Tag: frr-8.0~21^2~3 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=6917f316f90ad2c0e0c2bc240715316860e9f636;p=matthieu%2Ffrr.git docker: fix ubuntu containers Signed-off-by: Igor Ryzhov --- diff --git a/docker/ubuntu18-ci/Dockerfile b/docker/ubuntu18-ci/Dockerfile index 86fbe4f49c..680b9172ad 100644 --- a/docker/ubuntu18-ci/Dockerfile +++ b/docker/ubuntu18-ci/Dockerfile @@ -31,9 +31,9 @@ RUN apt-get install -y cmake libpcre2-dev USER frr:frr -# build and install libyang1 +# build and install libyang2 RUN cd && pwd && ls -al && \ - git clone https://github.com/CESNET/libyang.git -b libyang2 && \ + git clone https://github.com/CESNET/libyang.git && \ cd libyang && \ git checkout v2.0.0 && \ mkdir build; cd build && \ diff --git a/docker/ubuntu20-ci/Dockerfile b/docker/ubuntu20-ci/Dockerfile index ead5c56c54..71fde305e6 100644 --- a/docker/ubuntu20-ci/Dockerfile +++ b/docker/ubuntu20-ci/Dockerfile @@ -34,9 +34,9 @@ RUN apt-get install -y cmake libpcre2-dev USER frr:frr -# build and install libyang1 +# build and install libyang2 RUN cd && pwd && ls -al && \ - git clone https://github.com/CESNET/libyang.git -b libyang2 && \ + git clone https://github.com/CESNET/libyang.git && \ cd libyang && \ git checkout v2.0.0 && \ mkdir build; cd build && \