Files
claude-hub/entrypoint.sh
Jonathan Flatt fc567071dd Initial commit
2025-05-20 17:01:59 +00:00

8 lines
186 B
Bash
Executable File

#!/bin/sh
# Ensure logs directory exists and has proper permissions
mkdir -p /app/logs
chmod 777 /app/logs
# Switch to claudeuser and execute the main command
exec gosu claudeuser "$@"