release 1.0.0

- bump python-version to 3.14
- bump streamlit to 1.52.2
- bump numpy to 2.4.0
- extra-script for generating special-wb's
- rework of container to use a python-virtual-environment and create the special-wb's at first start of the container (no longer at first web-request)
- adding links to source-code and docker-registry's in welcome-message
- some more error-handling for ADFG(V)X
This commit is contained in:
2025-12-25 18:52:23 +01:00
parent 79c3cb83c7
commit 6bac7839d3
11 changed files with 136 additions and 93 deletions

13
app/entrypoint.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Copyright (c) 2025 Martin Kayser (tebarius)
# Licensed under the MIT License. See LICENSE file in the project root.
set -e # Script bei Fehler abbrechen
# 1) einmalig bei Containerstart ausführen
echo "Generiere Special-WBs..."
python generate_special_wbs.py
# 2) Streamlit-App starten
echo "Starte Hauptprogramm..."
streamlit run app.py --server.port=8501 --server.address=0.0.0.0