From f212cfadf4c207a640db0217af2cd6f633f4c548 Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Thu, 27 Mar 2025 18:28:17 -0700 Subject: [PATCH] Tell Docker to build Trunk with only one job This might reduce the amount of memory it takes to build the CI image. --- tools/ci-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci-image/Dockerfile b/tools/ci-image/Dockerfile index de4668e..4deb2d3 100644 --- a/tools/ci-image/Dockerfile +++ b/tools/ci-image/Dockerfile @@ -1,4 +1,4 @@ FROM rust:1.85-slim-bookworm RUN rustup target add wasm32-unknown-unknown -RUN cargo install trunk +RUN cargo install trunk --jobs 1 WORKDIR /home \ No newline at end of file