From c8bc8d8925f1f240409406d8145684565dad2a70 Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Tue, 15 Oct 2024 10:15:25 +0200 Subject: [PATCH] switch to port 5000 Signed-off-by: Peter Siegmund --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8b411d0..4b47852 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,6 @@ USER app COPY --chown=app --from=build /usr/src/app/build/libs/*-SNAPSHOT.jar /usr/app/edge.jar -HEALTHCHECK CMD curl --fail http://localhost:8080/actuator/health/liveness || exit 1 +HEALTHCHECK CMD curl --fail http://localhost:5000/actuator/health/liveness || exit 1 CMD ["java", "-jar", "/usr/app/edge.jar"]