This commit is contained in:
2026-05-27 18:58:42 +02:00
parent cd0757ab6d
commit 01c562dc46
20 changed files with 4579 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ /app/src/
COPY main.py /app/main.py
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1
VOLUME ["/config"]
EXPOSE 8080
CMD ["python", "/app/main.py"]