- 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
14 lines
400 B
Bash
14 lines
400 B
Bash
#!/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
|