Rearranged file structure. Separated App code from Terraform code.

This commit is contained in:
2025-08-15 14:10:57 +02:00
parent db37434b78
commit a9ac5f2549
8 changed files with 1 additions and 1 deletions

8
app/entrypoint.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
if [ "$1" = "-s" ] || [ "$1" = "--shell" ]; then
shift
exec bash $@
fi
exec streamlit $@