From e56a520e001cde06e57cb73b8f3eec5243113c45 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Thu, 8 Feb 2024 23:46:26 +0200 Subject: [PATCH] fix(docker): disable jemalloc feature by default (#6495) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a68f2e42..7c0e5d987 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN cargo chef cook --profile $BUILD_PROFILE --recipe-path recipe.json # Build application COPY . . -RUN cargo build --profile $BUILD_PROFILE --locked --bin reth +RUN cargo build --profile $BUILD_PROFILE --no-default-features --locked --bin reth # ARG is not resolved in COPY so we have to hack around it by copying the # binary to a temporary location