put entrypoint in own file

This commit is contained in:
2025-08-04 19:17:32 +02:00
parent 4bc5770cce
commit 629bc6c648
3 changed files with 9 additions and 12 deletions

8
entrypoint.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
echo "Rendering dagster.yaml from template..."
envsubst < dagster.yaml.template > dagster.yaml
echo "Starting Dagster: $@"
exec "$@"