From 77e2193e39b021b0dc3bce14b51915025ed60eab Mon Sep 17 00:00:00 2001
From: Daniel <d.hornung@indiscale.com>
Date: Thu, 26 Sep 2024 15:54:07 +0200
Subject: [PATCH] FIX: Added iwyu in Dockerfile

---
 .docker/Dockerfile  | 3 ++-
 doc/DEPENDENCIES.md | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.docker/Dockerfile b/.docker/Dockerfile
index 8e7597e..9695b6f 100644
--- a/.docker/Dockerfile
+++ b/.docker/Dockerfile
@@ -2,7 +2,8 @@ FROM debian:bookworm
 
 RUN apt-get update
 RUN apt-get install -y cmake
-RUN apt-get install -y lcov
+# iwyu is not a strict dependency here, but in the cppinttests.
+RUN apt-get install -y lcov iwyu
 RUN apt-get install -y doxygen graphviz
 RUN apt-get install -y clang-format-16 clang-tidy-16
 RUN apt-get install -y python3-pip python3-venv
diff --git a/doc/DEPENDENCIES.md b/doc/DEPENDENCIES.md
index a0a6e25..543d02c 100644
--- a/doc/DEPENDENCIES.md
+++ b/doc/DEPENDENCIES.md
@@ -40,7 +40,7 @@ clang-tidy-16
 
 ```
 >=gcc-10.2.0
->=lcov-1.15
+>=lcov-1.16
 ```
 
 ## Formatting ##
-- 
GitLab