🐛 fix(zitare): correct health check endpoint path in Dockerfile

Changed /api/health to /health to match actual endpoint

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-02-13 19:35:08 +01:00
parent 09465fe36b
commit e62782f627

View file

@ -76,8 +76,8 @@ WORKDIR /app/apps/zitare/apps/backend
EXPOSE 3007
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:3007/api/health || exit 1
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:3007/health || exit 1
# Run entrypoint script
ENTRYPOINT ["docker-entrypoint.sh"]