From 2a3444e6228172550d4e099da40a8f61139c0949 Mon Sep 17 00:00:00 2001 From: Kavehhn174 Date: Thu, 13 Aug 2026 11:36:00 +0330 Subject: [PATCH] chore: remove HEALTHCHECK from Dockerfile --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2d65b53..975c12d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,4 @@ RUN npm run build EXPOSE 5174 -# Healthcheck targeting port 5174 -HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:5174/ || exit 1 - CMD ["npx", "vite", "preview", "--host", "0.0.0.0", "--port", "5174"]