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 <zhanghongyu@xiaomi.com>
This commit is contained in:
zhanghongyu 2024-01-10 14:52:01 +08:00 committed by Xiang Xiao
parent f2bcb0d2d8
commit b3dcebce07
1 changed files with 2 additions and 1 deletions

View File

@ -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