refactor: seperate system into single Dockerfiles

This commit is contained in:
Patryk Hegenberg 2026-02-18 12:47:22 +01:00
parent ad87f702f1
commit ed803a2ca5
26 changed files with 238 additions and 85 deletions

View file

@ -2,7 +2,7 @@
echo "Starte Pipeline Scheduler (Intervall: $INTERVAL Sekunden)"
while true; do
echo "Führe Pipeline aus: $(date)"
python main.py run
/app/.venv/bin/python -m pipeline_api.main run
echo "Pipeline beendet. Warte $INTERVAL Sekunden..."
sleep ${INTERVAL:-3600}
done