From 882e73a79e17ed0e8ae8c8283a58310cf6f2a01d Mon Sep 17 00:00:00 2001 From: Vitor Bandeira Date: Tue, 29 Oct 2024 14:38:24 +0000 Subject: [PATCH] docker: fixes to run on 22.04 Signed-off-by: Vitor Bandeira --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4865ee3..b51bf54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,15 +7,13 @@ RUN apt update && \ tzdata \ clang-tidy-14 \ clang-tidy-15 \ - clang-tidy-16 \ - clang-tidy-17 \ - clang-tidy-18 \ python3 \ python3-pip \ && rm -rf /var/lib/apt/lists/ COPY . /clang_tidy_review/ -RUN python3 -m pip install --break-system-packages /clang_tidy_review/post/clang_tidy_review +RUN python3 -m pip install --upgrade pip && \ + python3 -m pip install --break-system-packages /clang_tidy_review/post/clang_tidy_review ENTRYPOINT ["review"]