From c5d252b83713a708b907a8619ee79dbba9f4be4b Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 7 Oct 2024 16:25:17 -0400 Subject: [PATCH] collab: Add missing `cmake` dependency to Dockerfile (#18832) This PR adds the missing `cmake` dependency to the Docker image that is now needed in order to build collab. Release Notes: - N/A --- Dockerfile-collab | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile-collab b/Dockerfile-collab index 2fb5f04147..7945eb426d 100644 --- a/Dockerfile-collab +++ b/Dockerfile-collab @@ -31,10 +31,12 @@ ENV GITHUB_SHA=$GITHUB_SHA # - Staging: `4f408ec65a3867278322a189b4eb20f1ab51f508` # - Production: `fc4c533d0a8c489e5636a4249d2b52a80039fbd7` # +# Also add `cmake`, since we need it to build `wasmtime`. +# # Installing these as a temporary workaround, but I think ideally we'd want to figure # out what caused them to be included in the first place. RUN apt-get update; \ - apt-get install -y --no-install-recommends libxkbcommon-dev libxkbcommon-x11-dev + apt-get install -y --no-install-recommends libxkbcommon-dev libxkbcommon-x11-dev cmake RUN --mount=type=cache,target=./script/node_modules \ --mount=type=cache,target=/usr/local/cargo/registry \