From b0cb6e84787f7eb8868403d1fdb1b0032e1d92bd Mon Sep 17 00:00:00 2001 From: TimL Date: Tue, 22 Oct 2024 01:10:49 +1100 Subject: [PATCH] Add zap tooling to Docker container (#84) --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index a0d8d1a1..81d91667 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,6 +51,14 @@ RUN \ && unzip -q -d simplicity_sdk_2024.6.2 simplicity_sdk_2024.6.2.zip \ && rm simplicity_sdk_2024.6.2.zip +# ZCL Advanced Platform (ZAP) v2024.09.27 +RUN \ + curl -o zap_2024.09.27.zip -L https://github.com/project-chip/zap/releases/download/v2024.09.27/zap-linux-x64.zip \ + && unzip -q -d /opt/zap zap_2024.09.27.zip \ + && rm zap_2024.09.27.zip + +ENV STUDIO_ADAPTER_PACK_PATH="/opt/zap" + ARG USERNAME=builder ARG USER_UID=1000 ARG USER_GID=$USER_UID