First commit

This commit is contained in:
2025-10-13 11:35:07 +02:00
parent 82275843b4
commit d193bc05f1
7 changed files with 320 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.12-slim
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
WORKDIR /app
COPY src/ /app/
ENTRYPOINT ["python","main.py"]