Fix entrypoint to use shell for command execution

This commit is contained in:
Sisyphus 2026-04-24 20:05:31 -03:00
parent 3ea36432a2
commit e48db1ca4c

View file

@ -2,4 +2,5 @@
if [ -n "$HERMES_SOUL_OVERRIDE" ]; then
echo "$HERMES_SOUL_OVERRIDE" > /opt/data/.hermes/SOUL.md
fi
exec "$@"
exec /bin/sh -c "$*"