UBERF-7836: Fix github integeration (#6313)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2024-08-11 18:09:36 +07:00
committed by GitHub
parent db6cb9fde7
commit e4ed3bd8af
8 changed files with 160 additions and 40 deletions
+2 -1
View File
@@ -5,6 +5,7 @@ WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose bufferutil utf-8-validate @mongodb-js/zstd snappy --unsafe-perm
COPY bundle/bundle.js ./
COPY bundle/bundle.js.map ./
RUN apt-get update
RUN apt-get install libjemalloc2
@@ -13,4 +14,4 @@ ENV LD_PRELOAD=libjemalloc.so.2
ENV MALLOC_CONF=dirty_decay_ms:1000,narenas:2,background_thread:true
EXPOSE 3078
CMD [ "node", "--inspect", "--async-stack-traces", "bundle.js" ]
CMD [ "node", "--inspect", "--async-stack-traces", "--enable-source-maps", "bundle.js" ]