From b3dcebce07849c88be4da8df447754da9ca3cb48 Mon Sep 17 00:00:00 2001 From: zhanghongyu Date: Wed, 10 Jan 2024 14:52:01 +0800 Subject: [PATCH] linux/Dockerfile: Add the python3 coloredlogs package for the matter build Depend on this package when we compile using the build_examples.py script that comes with matter. Signed-off-by: zhanghongyu --- tools/ci/docker/linux/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ci/docker/linux/Dockerfile b/tools/ci/docker/linux/Dockerfile index 85a2da3e0a9..c1a3ff858f1 100644 --- a/tools/ci/docker/linux/Dockerfile +++ b/tools/ci/docker/linux/Dockerfile @@ -343,10 +343,11 @@ RUN pip3 install pytest==6.2.5 RUN pip3 install pytest-json==0.4.0 RUN pip3 install pytest-ordering==0.6 RUN pip3 install pytest-repeat==0.9.1 -# Install lark stringcase and jinja2 for matter build +# Install lark stringcase jinja2 and coloredlogs for matter build RUN pip3 install lark RUN pip3 install stringcase RUN pip3 install jinja2 +RUN pip3 install coloredlogs # Upgrade nodejs to the latest version RUN npm install -g n && n stable && hash -r