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:
parent
97da7fb3a0
commit
908728be50
|
|
@ -13,7 +13,7 @@
|
|||
[](https://www.typescriptlang.org)
|
||||
[](https://www.gnu.org/licenses/agpl-3.0)
|
||||
[](https://www.docker.com)
|
||||
[](https://axumortem.carterperez-dev.com)
|
||||
[](https://elitenetwork4life.com)
|
||||
|
||||
> Static binary analysis engine with multi-format parsing, YARA scanning, x86 disassembly, and MITRE ATT&CK threat scoring.
|
||||
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue