From 5f71ccafce13e3c304afe15d8829acca44da686f Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Tue, 19 Nov 2024 15:09:30 +0530 Subject: [PATCH] docker: pin chip-build docker tag to 67 for matter_builds earlier tag uses the Ubuntu 22.04 and Python 3.9 which breaks certain things like python testing framework on v1.4-branch. Use the chip-build's tag 67 which is the latest update for ESP32 platform. It uses Ubuntu 24.04 and Python 3.11 for setting up the esp-matter. --- tools/docker/matter_builds/Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/docker/matter_builds/Dockerfile b/tools/docker/matter_builds/Dockerfile index 7054e8ec1..02b5f0674 100644 --- a/tools/docker/matter_builds/Dockerfile +++ b/tools/docker/matter_builds/Dockerfile @@ -1,8 +1,6 @@ -# The chip-build image is moved to Ubuntu 24.04 for Matter v1.4 onwards. -# For Matter v1.3 and earlier, it uses Ubuntu 22.04. -# Therefore, pinning this to version:54 for building Docker images. -# TODO: Move to latest when updating submodule -ARG VERSION=54 +# 67 is the latest tag which updates the docker image for ESP32 platform +# hence pinning version to 67 for building with v1.4-branch. +ARG VERSION=67 FROM ghcr.io/project-chip/chip-build:${VERSION} as build # Use IDF_CHECKOUT_REF to specify a tag, a branch or a specific commit ID.