erster Upload

This commit is contained in:
Erik Thiele
2026-05-27 21:59:21 +02:00
parent 414448aff5
commit 08b57d447f
10 changed files with 7956 additions and 0 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 5008
CMD ["python", "app.py"]