Fix healthcheck URL in Dockerfile and compose; update README

This commit is contained in:
2026-06-22 00:39:43 -04:00
parent 801b0b97fc
commit dcad421c27
3 changed files with 46 additions and 56 deletions

View File

@@ -29,6 +29,6 @@ USER appuser
EXPOSE 5000
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD curl -fsS http://localhost:5000/login >/dev/null || exit 1
CMD curl -fsS http://localhost:5000/ >/dev/null || exit 1
CMD ["python", "app.py"]