From 42cb94e1f49cc9d4f09df7f70c075d9cc806ef24 Mon Sep 17 00:00:00 2001 From: Thearas Date: Wed, 26 Jan 2022 18:17:10 +0800 Subject: [PATCH] fix: docker image failed to boot on arm64 node --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index ff88d5bc6..b85f5ffe1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,10 @@ COPY meilisearch-http/Cargo.toml meilisearch-http/ COPY meilisearch-lib/Cargo.toml meilisearch-lib/ ENV RUSTFLAGS="-C target-feature=-crt-static" +# Issue #2115 +RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ + export JEMALLOC_SYS_WITH_LG_PAGE=16; \ + fi # Create dummy main.rs files for each workspace member to be able to compile all the dependencies RUN find . -type d -name "meilisearch-*" | xargs -I{} sh -c 'mkdir {}/src; echo "fn main() { }" > {}/src/main.rs;'