Fix docker container startup script
All checks were successful
Run Tests / run-tests (push) Successful in 40s
Build & Release / build-docker-image (push) Successful in 1m44s
Build & Release / deploy-to-production (push) Successful in 7s

This commit is contained in:
2026-05-02 16:18:31 +02:00
parent 9932fd8b52
commit d9ac4a458c

View File

@@ -1,7 +1,8 @@
#!/usr/bin/env sh #!/usr/bin/env sh
set -e
STREAMLIT_SECRETS_LOCATION=".streamlit/secrets.toml" STREAMLIT_SECRETS_LOCATION=".streamlit/secrets.toml"
touch STREAMLIT_SECRETS_LOCATION touch $STREAMLIT_SECRETS_LOCATION
SQLITE_DATABASE="/data/daily-counter.db" SQLITE_DATABASE="/data/daily-counter.db"
SQLITE_DATABASE_URL="sqlite://$SQLITE_DATABASE" SQLITE_DATABASE_URL="sqlite://$SQLITE_DATABASE"