From 2d050a317f5e301dbbefe3387d11fc18f96c81f0 Mon Sep 17 00:00:00 2001 From: fengmk2 Date: Mon, 7 Jul 2025 21:09:59 +0800 Subject: [PATCH] Revert "chore(server): use jemalloc to reduce RSS (#13001)" (#13074) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### PR Dependency Tree * **PR #13074** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) ## Summary by CodeRabbit * **Chores** * Updated deployment configuration to remove use of the jemalloc library. --- .github/deployment/node/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/deployment/node/Dockerfile b/.github/deployment/node/Dockerfile index 9555c940c7..353642f9ab 100644 --- a/.github/deployment/node/Dockerfile +++ b/.github/deployment/node/Dockerfile @@ -7,10 +7,7 @@ COPY ./packages/frontend/apps/mobile/dist /app/static/mobile WORKDIR /app RUN apt-get update && \ - apt-get install -y --no-install-recommends openssl libjemalloc2 && \ + apt-get install -y --no-install-recommends openssl && \ rm -rf /var/lib/apt/lists/* -# Enable jemalloc by preloading the library -ENV LD_PRELOAD=libjemalloc.so.2 - CMD ["node", "./dist/main.js"]