Skip to content

Commit

Permalink
TRY-198: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-kripakov-m10 committed Nov 30, 2023
1 parent 708765c commit 3808f02
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ ARG DIR=/workspace/compreface
COPY --from=build ${DIR}/api/target/*.jar /home/app.jar

# validate code below
RUN apt-get update ; \
apt-get install -y --no-install-recommends libjemalloc2 ; \
rm -rf /var/lib/apt/lists/*
ENV LD_PRELOAD="/usr/local/lib/libjemalloc.so.2"
RUN apt-get update
RUN apt-get install libjemalloc-dev
ENV LD_PRELOAD="/usr/lib/x86_64-linux-gnu/libjemalloc.so"
ENV MALLOC_CONF="prof_leak:true,prof:true,lg_prof_interval:25,lg_prof_sample:18,prof_prefix:/tmp/jeprof"

ENV DIAGNOSTIC_DIR /diagnostic
Expand Down

0 comments on commit 3808f02

Please sign in to comment.