platform/services/sign/pod-sign/Dockerfile
Andrey Sobolev f929acfe29
Enable jemalloc2 for our pods (#6823)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-10-07 16:20:31 +07:00

19 lines
439 B
Docker

FROM node:20
RUN apt-get update && apt-get install dumb-init
WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose bufferutil utf-8-validate @mongodb-js/zstd snappy --unsafe-perm
RUN apt-get update
RUN apt-get install libjemalloc2
RUN apt-get clean
ENV LD_PRELOAD=libjemalloc.so.2
ENV MALLOC_CONF=dirty_decay_ms:1000,narenas:2,background_thread:true
COPY bundle/bundle.js ./
CMD [ "dumb-init", "node", "bundle.js" ]