From cd56bb2fe1f26254c2b5f23036d7a11496849b7f Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 29 Sep 2024 15:31:24 -0400 Subject: [PATCH] Fix debug build in docker container by adding cranelift. --- docker/webhook_bridge_development/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/webhook_bridge_development/Dockerfile b/docker/webhook_bridge_development/Dockerfile index 4ea5afe..9df954c 100644 --- a/docker/webhook_bridge_development/Dockerfile +++ b/docker/webhook_bridge_development/Dockerfile @@ -2,5 +2,6 @@ FROM rustlang/rust:nightly-alpine3.20 AS builder RUN apk add --no-cache musl-dev pkgconfig libressl3.8-libssl libressl-dev RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache +RUN rustup component add rustc-codegen-cranelift RUN rustup component add rustfmt RUN rustup component add clippy