feat(docker): update Dockerfile and entrypoint script for Python path configuration and package verification

This commit is contained in:
pacnpal
2025-01-28 21:13:53 +00:00
parent b1c6d188d4
commit 58246b6704
2 changed files with 7 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ trap handle_term SIGTERM SIGINT
# Start the application
echo "Starting SimpleGuardHome server..."
python -m simpleguardhome.main &
PYTHONPATH=/app/src python -m simpleguardhome.main &
# Store child PID
child=$!