Erstes Frontend Layout erstellt.

This commit is contained in:
2026-06-16 22:00:41 +02:00
parent 7bc96f937e
commit fe0d85db55
8 changed files with 236 additions and 20 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.11-slim
WORKDIR /app
# Erfordert keine schweren Systempakete, das beschleunigt auch den Build!
# Wir installieren direkt die benötigten Python-Bibliotheken
RUN pip3 install --no-cache-dir streamlit pandas plotly
# Port für Streamlit öffnen
EXPOSE 8501
# Streamlit starten und an alle Netzwerk-Schnittstellen binden
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]