Update workloads/ecommerce/Dockerfile
Build and Push Frontend / build (push) Failing after 1m13s

This commit is contained in:
2026-07-24 06:48:14 +00:00
parent 80bca3e5c5
commit 3cf6a51799
+1 -10
View File
@@ -324,15 +324,6 @@ USER nextjs
EXPOSE 80
HEALTHCHECK \
--interval=30s \
--timeout=8s \
--start-period=30s \
--retries=3 \
CMD [
"node",
"-e",
"fetch('http://127.0.0.1/api/health').then(r => process.exit(r.ok ? 0 : 1)).catch(() => process.exit(1))"
]
HEALTHCHECK --interval=30s --timeout=8s --start-period=30s --retries=3 CMD ["node","-e","fetch('http://127.0.0.1/api/health').then((response) => process.exit(response.ok ? 0 : 1)).catch(() => process.exit(1))"]
CMD ["node", "server.js"]