From 46795e3ea5c66744e880c662af21618565efa706 Mon Sep 17 00:00:00 2001 From: ZKWolf Date: Sat, 16 Sep 2023 04:23:11 +0200 Subject: [PATCH] Fixed endpoint url healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ef40b25..3bcf38a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ RUN apk add curl EXPOSE 8080 -HEALTHCHECK CMD curl --fail http://localhost:8080/healthcheck +HEALTHCHECK CMD curl --fail http://localhost:8080/api/v1/healthcheck ENTRYPOINT ["python", "start_app.py"]