Deployment configuration

This commit is contained in:
2025-10-05 20:53:07 +02:00
committed by Florian
parent f8c9820e2c
commit ea1615995d
10 changed files with 123 additions and 60 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
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"]