From b2c2733f3a58dcdb9ae529068bc818c6fcd3de7e Mon Sep 17 00:00:00 2001 From: Matthieu Baerts Date: Wed, 6 Sep 2023 19:25:44 +0200 Subject: [PATCH] iproute: switch to latest version 6.5.0 Latest one, we need it: we check we have the last one and abort if not. Signed-off-by: Matthieu Baerts --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1b7c1be..80e72af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -77,7 +77,7 @@ RUN cd /opt && \ # iproute ARG IPROUTE2_GIT_URL="https://git.kernel.org/pub/scm/network/iproute2/iproute2.git" -ARG IPROUTE2_GIT_SHA="v6.4.0" +ARG IPROUTE2_GIT_SHA="v6.5.0" ENV IPROUTE2_GIT_SHA="${IPROUTE2_GIT_SHA}" RUN cd /opt && \ git clone "${IPROUTE2_GIT_URL}" iproute2 && \