From 0be5ae9e34be469c65f7f162991e9dc55457197b Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 8 Dec 2023 14:01:48 +0100 Subject: [PATCH] Support 64K page sizes (#248) --- alpine/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 4044de2..18639cd 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -71,6 +71,7 @@ RUN \ && cd /usr/src/jemalloc \ && git checkout ${JEMALLOC_VERSION} \ && ./autogen.sh \ + --with-lg-page=16 \ && make -j "$(nproc)" \ && make install \ \