platform/services/rekoni/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

24 lines
523 B
Docker

FROM node:20 AS runtime
RUN apt-get update
RUN apt-get install -y \
coreutils \
antiword \
poppler-utils \
html2text \
unrtf
ENV NODE_ENV=production
WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose sharp@v0.30.2 pdfjs-dist@v2.12.313 --unsafe-perm
RUN apt-get update
RUN apt-get install -y 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 ./
EXPOSE 4004
CMD [ "node", "./bundle.js" ]