Tell Docker to build Trunk with only one job

This might reduce the amount of memory it takes to build the CI image.
This commit is contained in:
Aaron Fenyes 2025-03-27 18:28:17 -07:00
parent 15375dc932
commit f212cfadf4

View file

@ -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