From 601195da37216c118426d563b05948799104b35b Mon Sep 17 00:00:00 2001 From: Jontze <42588836+jontze@users.noreply.github.com> Date: Sat, 28 Sep 2024 12:25:00 +0200 Subject: [PATCH] chore(docker): Install cmake during first build stage Apparently I still need cmake for the first build stage. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5fb6090..8981678 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ ENV RUSTUP_MAX_RETRIES=100 ENV CARGO_INCREMENTAL=0 ENV CARGO_NET_RETRY=100 ENV CARGO_TERM_COLOR=always +RUN apt-get update && apt-get install -y cmake && apt-get autoremove -y # Build dependencies - this is the dependencies caching layer RUN cargo chef cook --release --recipe-path recipe.json