This commit is contained in:
2025-09-05 09:16:40 +02:00
commit ca4e38c842
6 changed files with 271 additions and 0 deletions

8
entrypoint.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
set -e
# Pull neueste Änderungen
git -C /app pull || true
# Flask starten
exec flask run --host=0.0.0.0 --port=5000