From cad4c3c0c2062b3fb26ae9e3f88245ad6a600e44 Mon Sep 17 00:00:00 2001 From: konsti Date: Tue, 9 Apr 2024 15:08:55 +0200 Subject: [PATCH] Remove pip jemalloc config from dockerfile (#115206) --- Dockerfile | 4 ---- script/hassfest/docker.py | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f2f011b288..28b65d6383d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,14 +30,10 @@ RUN \ uv pip install homeassistant/home_assistant_*.whl; \ fi \ && if [ "${BUILD_ARCH}" = "i386" ]; then \ - LD_PRELOAD="/usr/local/lib/libjemalloc.so.2" \ - MALLOC_CONF="background_thread:true,metadata_thp:auto,dirty_decay_ms:20000,muzzy_decay_ms:20000" \ linux32 uv pip install \ --no-build \ -r homeassistant/requirements_all.txt; \ else \ - LD_PRELOAD="/usr/local/lib/libjemalloc.so.2" \ - MALLOC_CONF="background_thread:true,metadata_thp:auto,dirty_decay_ms:20000,muzzy_decay_ms:20000" \ uv pip install \ --no-build \ -r homeassistant/requirements_all.txt; \ diff --git a/script/hassfest/docker.py b/script/hassfest/docker.py index 4e348d4ae6c..e38a238be7d 100644 --- a/script/hassfest/docker.py +++ b/script/hassfest/docker.py @@ -38,14 +38,10 @@ RUN \ uv pip install homeassistant/home_assistant_*.whl; \ fi \ && if [ "${{BUILD_ARCH}}" = "i386" ]; then \ - LD_PRELOAD="/usr/local/lib/libjemalloc.so.2" \ - MALLOC_CONF="background_thread:true,metadata_thp:auto,dirty_decay_ms:20000,muzzy_decay_ms:20000" \ linux32 uv pip install \ --no-build \ -r homeassistant/requirements_all.txt; \ else \ - LD_PRELOAD="/usr/local/lib/libjemalloc.so.2" \ - MALLOC_CONF="background_thread:true,metadata_thp:auto,dirty_decay_ms:20000,muzzy_decay_ms:20000" \ uv pip install \ --no-build \ -r homeassistant/requirements_all.txt; \