Deployment configuration

This commit is contained in:
2025-10-05 20:27:30 +02:00
committed by Florian
parent f67fd99333
commit aab311dc86
13 changed files with 206 additions and 91 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 ["sh", "-c", "sleep 10 && python main.py"]