add healthz, docker fixes, minor readme tweaks

This commit is contained in:
Nandor Magyar
2025-08-31 15:55:44 +02:00
committed by Levente Orban
parent cc8266ae6e
commit 94fffc5695
6 changed files with 41 additions and 13 deletions

View File

@@ -20,4 +20,8 @@ EXPOSE 3000
ENV PORT 3000
ENV HOSTNAME "0.0.0.0"
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/healthz || exit 1
CMD [ "node", "build" ]