fix: correct typo in HEALTHCHECK start-period option

This commit is contained in:
MayaTheShy
2026-03-22 20:44:57 -04:00
parent a499446366
commit 01eef4eead

View File

@@ -26,7 +26,7 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh
EXPOSE 3001
HEALTHCHECK --interval=10s --timeout=5s --start_period=15s --retries=3 \
HEALTHCHECK --interval=10s --timeout=5s --start-period=15s --retries=3 \
CMD wget -qO- http://localhost:3001/api/health || exit 1
ENTRYPOINT ["docker-entrypoint.sh"]