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.
This commit is contained in:
Shubham Patil
2024-11-19 15:09:30 +05:30
parent b5ed1c30e2
commit 5f71ccafce
+3 -5
View File
@@ -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.