init project

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-10 23:11:54 +02:00
parent 4d7853b778
commit a43ce47339
9 changed files with 162 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# copy pasted from ich_iel bot
FROM python:3.13.13-slim-trixie
ENV PATH=/usr/local/bin:$PATH
WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get install -y gcc libmariadb-dev && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["fastapi", "run", "main.py"]