Loading src/pathcomp/backend/Dockerfile +5 −2 Original line number Diff line number Diff line Loading @@ -20,6 +20,7 @@ ARG DEBIAN_FRONTEND=noninteractive # Install build software RUN apt-get update -y && apt-get install build-essential curl gcovr libglib2.0-dev -y RUN apt-get install valgrind -y # mkdir RUN mkdir -p /var/teraflow Loading @@ -37,12 +38,14 @@ RUN mv pathComp /var/teraflow/bin # Build code coverage version RUN make clean RUN make coverage #RUN make coverage RUN make debug EXPOSE 8081 # builder defines coverage version of pathcomp by default ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "pathcomp.log" ] #ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "pathcomp.log" ] ENTRYPOINT [ "valgrind", "--leak-check=full", "--track-origins=yes", "./pathComp-dbg", "config/pathcomp.conf", "pathcomp.log" ] # Stage 2 Loading Loading
src/pathcomp/backend/Dockerfile +5 −2 Original line number Diff line number Diff line Loading @@ -20,6 +20,7 @@ ARG DEBIAN_FRONTEND=noninteractive # Install build software RUN apt-get update -y && apt-get install build-essential curl gcovr libglib2.0-dev -y RUN apt-get install valgrind -y # mkdir RUN mkdir -p /var/teraflow Loading @@ -37,12 +38,14 @@ RUN mv pathComp /var/teraflow/bin # Build code coverage version RUN make clean RUN make coverage #RUN make coverage RUN make debug EXPOSE 8081 # builder defines coverage version of pathcomp by default ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "pathcomp.log" ] #ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "pathcomp.log" ] ENTRYPOINT [ "valgrind", "--leak-check=full", "--track-origins=yes", "./pathComp-dbg", "config/pathcomp.conf", "pathcomp.log" ] # Stage 2 Loading