From a6f700a3e2d4ce3c96820527a50565ea00375a4b Mon Sep 17 00:00:00 2001 From: ZKWolf Date: Fri, 21 Jul 2023 17:34:41 +0200 Subject: [PATCH] Curl right URL to not create spam in the log --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4602028..ef40b25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ RUN apk add curl EXPOSE 8080 -HEALTHCHECK CMD curl --fail http://localhost:8080/ +HEALTHCHECK CMD curl --fail http://localhost:8080/healthcheck ENTRYPOINT ["python", "start_app.py"]