From ea7a538299e893ac3f4b0fa439d25bf824e85a9e Mon Sep 17 00:00:00 2001 From: Denis Costa Date: Tue, 26 Dec 2023 13:01:03 -0300 Subject: [PATCH] Change pip upgrade --- .docker/lint/c-lint.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/lint/c-lint.Dockerfile b/.docker/lint/c-lint.Dockerfile index 002be3d8..32c9032a 100644 --- a/.docker/lint/c-lint.Dockerfile +++ b/.docker/lint/c-lint.Dockerfile @@ -2,7 +2,7 @@ FROM python:3 SHELL ["/bin/bash", "-o", "pipefail", "-c"] -RUN pip install -U pip +RUN pip install --upgrade pip RUN pip install cpplint RUN apt update && apt install clang-format -y