fix(docker): disable jemalloc feature by default (#6495)

This commit is contained in:
DaniPopes
2024-02-08 23:46:26 +02:00
committed by GitHub
parent e781a6cb30
commit e56a520e00

View File

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