From ea717525fc3017b46f396cf9021596b0bf466b67 Mon Sep 17 00:00:00 2001 From: Denis Costa Date: Wed, 10 Jul 2024 11:42:59 -0300 Subject: [PATCH] Add debug command --- .docker/lint/c-lint.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.docker/lint/c-lint.Dockerfile b/.docker/lint/c-lint.Dockerfile index 1f177951..f00fa8b8 100644 --- a/.docker/lint/c-lint.Dockerfile +++ b/.docker/lint/c-lint.Dockerfile @@ -1,5 +1,6 @@ FROM python:3.11.4 +RUN which pip RUN pip install -U pip RUN pip install cpplint RUN apt update && apt install clang-format -y