chore(binary-analysis): update live demo URL and fix prod healthcheck

Point the README live-demo badge at elitenetwork4life.com and drop the
'|| exit 1' from the exec-form HEALTHCHECK CMD, where the shell operator was
never interpreted and only served to confuse the intended behavior.
This commit is contained in:
CarterPerez-dev 2026-07-19 02:45:20 -04:00
parent 97da7fb3a0
commit 908728be50
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
[![TypeScript](https://img.shields.io/badge/TypeScript-5-3178C6?style=flat&logo=typescript&logoColor=white)](https://www.typescriptlang.org)
[![License: AGPLv3](https://img.shields.io/badge/License-AGPL_v3-purple.svg)](https://www.gnu.org/licenses/agpl-3.0)
[![Docker](https://img.shields.io/badge/Docker-ready-2496ED?style=flat&logo=docker)](https://www.docker.com)
[![Live Demo](https://img.shields.io/badge/Live-axumortem.carterperez--dev.com-darkgreen?style=flat&logo=googlechrome)](https://axumortem.carterperez-dev.com)
[![Live Demo](https://img.shields.io/badge/Live-elitenetwork4life.com-darkgreen?style=flat&logo=googlechrome)](https://elitenetwork4life.com)
> Static binary analysis engine with multi-format parsing, YARA scanning, x86 disassembly, and MITRE ATT&CK threat scoring.

View File

@ -41,6 +41,6 @@ USER axumortem
EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD ["/usr/local/bin/axumortem", "--help"] || exit 1
CMD ["/usr/local/bin/axumortem", "--help"]
ENTRYPOINT ["/usr/local/bin/axumortem"]