メモリアロケーターをjemallocにする (MisskeyIO#152)
This commit is contained in:
parent
7d8832b368
commit
8762f0d573
|
@ -62,7 +62,7 @@ ARG GID="991"
|
|||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
ffmpeg tini curl \
|
||||
ffmpeg tini curl libjemalloc2 \
|
||||
&& corepack enable \
|
||||
&& groupadd -g "${GID}" cherrypick \
|
||||
&& useradd -l -u "${UID}" -g "${GID}" -m -d /cherrypick cherrypick \
|
||||
|
@ -81,6 +81,8 @@ COPY --chown=cherrypick:cherrypick --from=native-builder /cherrypick/packages/ba
|
|||
COPY --chown=cherrypick:cherrypick --from=native-builder /cherrypick/fluent-emojis /cherrypick/fluent-emojis
|
||||
COPY --chown=cherrypick:cherrypick . ./
|
||||
|
||||
ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2
|
||||
ENV MALLOC_CONF=background_thread:true,metadata_thp:auto,dirty_decay_ms:30000,muzzy_decay_ms:30000
|
||||
ENV NODE_ENV=production
|
||||
HEALTHCHECK --interval=5s --retries=20 CMD ["/bin/bash", "/cherrypick/healthcheck.sh"]
|
||||
ENTRYPOINT ["/usr/bin/tini", "--"]
|
||||
|
|
Loading…
Reference in a new issue