Improve the docker-entrypoint comments

Co-Authored-By: Joshua Young <djry1999@gmail.com>
This commit is contained in:
Jean Boussier 2024-02-06 16:59:50 +01:00
parent b324c221e2
commit 1ca8c8ea34
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash -e
# Enable jemalloc for reduced memory usage and reduce latency.
# Enable jemalloc for reduced memory usage and latency.
if [ -f /usr/lib/*/libjemalloc.so.2 ]; then
LD_PRELOAD="$(echo /usr/lib/*/libjemalloc.so.2) $LD_PRELOAD"
fi