Add entrypoint script to support HERMES_SOUL_OVERRIDE env var

This commit is contained in:
Sisyphus 2026-04-24 19:57:36 -03:00
parent 31bbaa7360
commit 3ea36432a2
2 changed files with 10 additions and 1 deletions

5
entrypoint.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/bash
if [ -n "$HERMES_SOUL_OVERRIDE" ]; then
echo "$HERMES_SOUL_OVERRIDE" > /opt/data/.hermes/SOUL.md
fi
exec "$@"