first Commit

This commit is contained in:
Erik Thiele
2026-05-18 21:14:04 +02:00
commit f255e50dd3
22 changed files with 7336 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 5006
CMD ["python", "app.py"]