init commit

This commit is contained in:
2025-08-08 09:23:57 +09:00
commit f09b90f63e
56 changed files with 757 additions and 0 deletions

15
docker/bot/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
build-essential \
libmariadb-dev \
libmariadb-dev-compat \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY app /app