Erstes Frontend Layout erstellt.
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user