Initial commit

This commit is contained in:
2025-07-15 22:27:59 +02:00
commit ee54dae729
8 changed files with 426 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
# Basis-Image mit Python
FROM python:3.11-slim
# Installiere Abhängigkeiten
RUN pip install --no-cache-dir --upgrade pip
# Arbeitsverzeichnis im Container
WORKDIR /app
# requirements.txt kopieren und installieren
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# App-Dateien kopieren
COPY *.py .
# Port freigeben
EXPOSE 8050
# Container-Startbefehl
CMD ["python", "req-short.py"]