mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-30 02:37:46 +03:00
f929acfe29
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
24 lines
523 B
Docker
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" ]
|