From 14ca59f02c5fd007c64ac089f8016dececf632df Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Wed, 24 Dec 2025 07:42:19 +0530 Subject: [PATCH] fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc44e7a..f268356 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ EXPOSE 3001 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:3001/health || exit 1 + CMD wget --no-verbose --tries=1 --spider http://localhost:3001/api/v1/health || exit 1 # Start the application -CMD ["node", "dist/main"] +CMD ["node", "dist/src/main"]