Automatische Willkommensseite hinzugefügt

This commit is contained in:
Erik Thiele
2026-05-03 18:20:21 +02:00
parent 0fa3c00319
commit 1cb260fa80
12 changed files with 543 additions and 17 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5005
CMD ["python", "app.py"]