From 583fd6c118e35540a038aeec033628f24eaedb0c Mon Sep 17 00:00:00 2001 From: Lluis Gifre <lluis.gifre@cttc.es> Date: Sun, 11 Sep 2022 16:05:30 +0200 Subject: [PATCH] PathComp-Backend component: - Fixed instantiation parameters in Dockerfile --- src/pathcomp/backend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pathcomp/backend/Dockerfile b/src/pathcomp/backend/Dockerfile index 128085f90..b351d4715 100644 --- a/src/pathcomp/backend/Dockerfile +++ b/src/pathcomp/backend/Dockerfile @@ -45,11 +45,11 @@ EXPOSE 8081 # builder defines coverage version of pathcomp by default # coverage entrypoint: -ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "pathcomp.log" ] +ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "screen_only" ] # debug entrypoint: -#ENTRYPOINT [ "./pathComp-dbg", "config/pathcomp.conf", "pathcomp.log" ] +#ENTRYPOINT [ "./pathComp-dbg", "config/pathcomp.conf", "screen_only" ] # debug entrypoint with memory tracking: -#ENTRYPOINT [ "valgrind", "--leak-check=full", "--show-leak-kinds=all", "--track-origins=yes", "--show-error-list=yes", "./pathComp-dbg", "config/pathcomp.conf", "pathcomp.log" ] +#ENTRYPOINT [ "valgrind", "--leak-check=full", "--show-leak-kinds=all", "--track-origins=yes", "--show-error-list=yes", "./pathComp-dbg", "config/pathcomp.conf", "screen_only" ] # Stage 2 -- GitLab