From e4cf5fb461e1f3277684f2ceb9350ba1159686e1 Mon Sep 17 00:00:00 2001 From: Viktor Vaczi Date: Mon, 25 May 2026 19:59:15 +0200 Subject: [PATCH] fix(docker): add unzip to image (required by GLM dep build) A clean dependency build failed immediately at the GLM step with `unzip: command not found`. build-glm.sh extracts glm-0.9.9.8.zip with unzip, but the Ubuntu-based image (introduced when the emsdk image was replaced) never installed it. Add unzip to the apt-get list. Verified: GLM, zstd and protobuf now build and stamp, and the deps build proceeds into boost. Co-Authored-By: Claude Opus 4.7 --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index fc1c8e1..e65a7f1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -22,6 +22,7 @@ RUN apt-get update && apt-get install -y \ ccache \ rsync \ xz-utils \ + unzip \ && rm -rf /var/lib/apt/lists/* # Install emsdk from source (same approach as scripts/setup-emsdk.sh)