refactor(docker): simplify Dockerfile by copying package directly for easier imports and streamline entrypoint script

This commit is contained in:
pacnpal
2025-01-29 09:47:14 -05:00
parent ceee425fab
commit 18d1125243
2 changed files with 4 additions and 4 deletions

View File

@@ -3,5 +3,5 @@ set -e
echo "[$(date '+%Y-%m-%d %H:%M:%S')] Starting SimpleGuardHome..."
# Run the app with src in Python path to find the module
PYTHONPATH=/app/src exec python3 -m uvicorn simpleguardhome.main:app --host 0.0.0.0 --port 8000
# Just run uvicorn pointing to the app
exec python3 -m uvicorn simpleguardhome.main:app --host 0.0.0.0 --port 8000