From c944bd13dc4c7d35fa2e71a6c80bb06e6025ed5c Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Tue, 15 Oct 2024 10:21:15 +0200 Subject: [PATCH] switch to port 5000 Signed-off-by: Peter Siegmund --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 06061ae..89896dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,6 @@ USER app COPY --chown=app --from=build /usr/src/app/target/*.jar /usr/app/timezone.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 -EXPOSE 8080 CMD ["java", "-jar", "/usr/app/timezone.jar"]